Skip to content
Snippets Groups Projects
Commit 8b35e65f authored by David Gauchard's avatar David Gauchard
Browse files

variable initialization

parent b50c4239
No related branches found
No related tags found
1 merge request!7Review on pfcalcul
......@@ -25,7 +25,7 @@ class Minion(QueueClient):
break
start = time.perf_counter()
print(f"start work {n + 1}/{self.n_tasks} on task {task}...")
result = find_prime(task)
result, norm = find_prime(task)
perf = time.perf_counter() - start
print(f"The {task}-th prime number is {result}")
print(f"Its associated quaternion norm is {norm}")
......
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