Commit 0e2667c3 authored by Georgios Dagkakis's avatar Georgios Dagkakis

disable multiprocessing as it may crash

parent faefa115
......@@ -85,7 +85,7 @@ class BatchesACO(ACO):
data["general"]["distributorURL"]=None # no distributor currently, to be added in the GUI
# use multiprocessing in the PC. This can be an option, but default for now
import multiprocessing
data["general"]["multiprocessorCount"] = multiprocessing.cpu_count()-1 or 1
data["general"]["multiprocessorCount"] = None # multiprocessing.cpu_count()-1 or 1
ACO.run(self, data)
data["result"]["result_list"][-1]["score"] = ''
data["result"]["result_list"][-1]["key"] = "Go To Results Page"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment