Skip to content
Snippets Groups Projects
Commit a0d5be66 authored by David Hendriks's avatar David Hendriks
Browse files

corrected mistake

parent d0132111
No related branches found
No related tags found
No related merge requests found
......@@ -618,8 +618,8 @@ class Population(object):
print("with mp: {} systems took {}s".format(amt, stop_mp - start_mp))
#########################################################
duration_no_mp = start_no_mp - stop_no_mp
duration_mp = start_mp - stop_mp
duration_no_mp = stop_no_mp - start_no_mp
duration_mp = stop_mp - start_mp
ratio = duration_no_mp/duration_mp
print(
"Running mp versus no mp is {} times faster!".format(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment