From 02d501273d26e39c26f91c60fd27b757ab8ac923 Mon Sep 17 00:00:00 2001 From: VasilyShcherbinin <vasily.shcherbinin@outlook.com> Date: Mon, 11 Feb 2019 15:10:35 +0000 Subject: [PATCH] Typo fix --- UCS/UCS_Run.py | 2 +- XCS/XCS_Run.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/UCS/UCS_Run.py b/UCS/UCS_Run.py index c3522ee..f3568fd 100644 --- a/UCS/UCS_Run.py +++ b/UCS/UCS_Run.py @@ -81,4 +81,4 @@ if __name__ == '__main__': UCS() t1 = time.clock() total = t1 - t0 - print("Run time in seconds: %.2f" % round(total, 2)) + print("Total run time in seconds: %.2f" % round(total, 2)) diff --git a/XCS/XCS_Run.py b/XCS/XCS_Run.py index 8fa5de6..f2011d3 100644 --- a/XCS/XCS_Run.py +++ b/XCS/XCS_Run.py @@ -67,4 +67,4 @@ if __name__ == '__main__': XCS().run_XCS() t1 = time.clock() total = t1 - t0 - print("Total un time in seconds: %.2f" % round(total, 2)) + print("Total run time in seconds: %.2f" % round(total, 2)) -- GitLab