mg-pso-gui 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- {mg_pso_gui-0.1.0.dist-info → mg_pso_gui-0.1.1.dist-info}/METADATA +1 -1
- {mg_pso_gui-0.1.0.dist-info → mg_pso_gui-0.1.1.dist-info}/RECORD +6 -6
- mgpsogui/util/PSORunner.py +0 -12
- {mg_pso_gui-0.1.0.dist-info → mg_pso_gui-0.1.1.dist-info}/WHEEL +0 -0
- {mg_pso_gui-0.1.0.dist-info → mg_pso_gui-0.1.1.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.1.0.dist-info → mg_pso_gui-0.1.1.dist-info}/top_level.txt +0 -0
@@ -30,12 +30,12 @@ mgpsogui/gui/images/stop.png,sha256=JPuxXQerCGpLikcp7cAj3iLCOjULMYYZ2sZe0lArh68,
|
|
30
30
|
mgpsogui/gui/images/trash.png,sha256=j8cf0kWbJd-4Jp20lUVV1o1NSeQ4v1Ej4gfcIA3DVRQ,2958
|
31
31
|
mgpsogui/gui/images/up.png,sha256=AQvFWCUqSQNaQ1E6LKZ9zNfSvW6t4mgy8uswdg9T2Hg,2457
|
32
32
|
mgpsogui/util/GraphGenerator.py,sha256=hEPhka0ZKQJ9DSSywDfwoXFQMsk3RHyG8QyTLOQnN4M,7851
|
33
|
-
mgpsogui/util/PSORunner.py,sha256=
|
33
|
+
mgpsogui/util/PSORunner.py,sha256=g07aAHNszXBgt-1oRUOMGgt_gbKveTPnWvsAHiuHRVg,6241
|
34
34
|
mgpsogui/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
35
|
mgpsogui/util/CTkToolTip/__init__.py,sha256=G1jxV55hGtGgwyC1sR-uUUdasDdh0XZgcI-aILgGYA0,225
|
36
36
|
mgpsogui/util/CTkToolTip/ctk_tooltip.py,sha256=SZMovpQIGvdpDRbqCKl9SHs92DrFCO2MOYL2ifolvOE,6329
|
37
|
-
mg_pso_gui-0.1.
|
38
|
-
mg_pso_gui-0.1.
|
39
|
-
mg_pso_gui-0.1.
|
40
|
-
mg_pso_gui-0.1.
|
41
|
-
mg_pso_gui-0.1.
|
37
|
+
mg_pso_gui-0.1.1.dist-info/METADATA,sha256=w2IMfeTR_SnmS-GgzzHzARE5i9UF4cWRwZZJZ3oQS6c,9457
|
38
|
+
mg_pso_gui-0.1.1.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
39
|
+
mg_pso_gui-0.1.1.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
|
40
|
+
mg_pso_gui-0.1.1.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
|
41
|
+
mg_pso_gui-0.1.1.dist-info/RECORD,,
|
mgpsogui/util/PSORunner.py
CHANGED
@@ -13,11 +13,6 @@ def enqueue_output(out, queue):
|
|
13
13
|
for line in iter(out.readline, b''):
|
14
14
|
queue.put(line)
|
15
15
|
out.close()
|
16
|
-
|
17
|
-
def frozen_check():
|
18
|
-
while True:
|
19
|
-
print("NOT FROZEN")
|
20
|
-
time.sleep(5)
|
21
16
|
|
22
17
|
def run_process(stdout_queue, stderr_queue, results_queue, data, folder):
|
23
18
|
steps = data['steps']
|
@@ -55,10 +50,6 @@ def run_process(stdout_queue, stderr_queue, results_queue, data, folder):
|
|
55
50
|
stdour_thread.start()
|
56
51
|
stderr_thread.start()
|
57
52
|
|
58
|
-
frozen_check_thread = threading.Thread(target=frozen_check)
|
59
|
-
frozen_check_thread.daemon = True
|
60
|
-
frozen_check_thread.start()
|
61
|
-
|
62
53
|
options = {}
|
63
54
|
oh_strategy = {}
|
64
55
|
|
@@ -78,9 +69,6 @@ def run_process(stdout_queue, stderr_queue, results_queue, data, folder):
|
|
78
69
|
|
79
70
|
print("Running global_best...\n")
|
80
71
|
|
81
|
-
import threading
|
82
|
-
|
83
|
-
|
84
72
|
optimizer, trace = global_best(steps,
|
85
73
|
rounds=(int(calibration_map['min_rounds']), int(calibration_map['max_rounds'])),
|
86
74
|
args=args,
|
File without changes
|
File without changes
|
File without changes
|