diff --git a/UCS/UCS_Run.py b/UCS/UCS_Run.py index c3522ee7a344d2b57c4f89e3f1ebab1b65b34463..f3568fd70bda7d6f46f164865ab57e39bace4436 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 8fa5de69cd2a755af1732c093f77101b3832aea5..f2011d38c63daaa0fe986766036349c99c4cbd22 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))