fixed naming

This commit is contained in:
Pünkösd Marcell 2020-09-24 16:17:12 +02:00
parent 22dc3e98b7
commit bd62836d9b
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import requests
def worker(outqueue, id):
print(f"Process {id} is preparing...")
print(f"Worker {id} is preparing...")
import numpy as np
import networkx as nx
@ -22,7 +22,7 @@ def worker(outqueue, id):
def max_comp_size(G):
return max([len(c) for c in nx.connected_components(G)])
print(f"Process {id} is working...")
print(f"Worker {id} is working...")
while True:
del_list = []
G = input_graph.copy()