mg-pso-gui 0.2.37__py3-none-any.whl → 0.2.38__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mg_pso_gui-0.2.37.dist-info → mg_pso_gui-0.2.38.dist-info}/METADATA +1 -1
- {mg_pso_gui-0.2.37.dist-info → mg_pso_gui-0.2.38.dist-info}/RECORD +6 -6
- mgpsogui/util/PSORunner.py +2 -2
- {mg_pso_gui-0.2.37.dist-info → mg_pso_gui-0.2.38.dist-info}/WHEEL +0 -0
- {mg_pso_gui-0.2.37.dist-info → mg_pso_gui-0.2.38.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.2.37.dist-info → mg_pso_gui-0.2.38.dist-info}/top_level.txt +0 -0
@@ -44,7 +44,7 @@ mgpsogui/gui/images/test.png,sha256=MUnVpRK-isxhEHzx4Q6Yh0M6FRZD1qvgCHH2XmiSBbk,
|
|
44
44
|
mgpsogui/gui/images/trash.png,sha256=j8cf0kWbJd-4Jp20lUVV1o1NSeQ4v1Ej4gfcIA3DVRQ,2958
|
45
45
|
mgpsogui/gui/images/up.png,sha256=AQvFWCUqSQNaQ1E6LKZ9zNfSvW6t4mgy8uswdg9T2Hg,2457
|
46
46
|
mgpsogui/util/GraphGenerator.py,sha256=dKzDPMK-0S6j1yIp5xoQIgN9GTKMhGpboAXjofCpmIk,31973
|
47
|
-
mgpsogui/util/PSORunner.py,sha256=
|
47
|
+
mgpsogui/util/PSORunner.py,sha256=J1THeD23eB4U65Nvd2VNCM8LXtwFL9S2UuoD-HApAnU,20824
|
48
48
|
mgpsogui/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
49
|
mgpsogui/util/debug.py,sha256=Swzny9_1S-CCONWGssj9iDoSpbwu5Vr4f95g_9L8bec,19759
|
50
50
|
mgpsogui/util/helpers.py,sha256=Ht2rge_4pGO7halz6KoLsL2eukB0k2tlkx68lBBmBA8,2669
|
@@ -69,8 +69,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
|
|
69
69
|
mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
|
70
70
|
mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
|
71
71
|
mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
|
72
|
-
mg_pso_gui-0.2.
|
73
|
-
mg_pso_gui-0.2.
|
74
|
-
mg_pso_gui-0.2.
|
75
|
-
mg_pso_gui-0.2.
|
76
|
-
mg_pso_gui-0.2.
|
72
|
+
mg_pso_gui-0.2.38.dist-info/METADATA,sha256=b4L-Ww2fw8PYKWn5y2pnr7uTBboGQhWpg74mI-ox0zA,9455
|
73
|
+
mg_pso_gui-0.2.38.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
74
|
+
mg_pso_gui-0.2.38.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
|
75
|
+
mg_pso_gui-0.2.38.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
|
76
|
+
mg_pso_gui-0.2.38.dist-info/RECORD,,
|
mgpsogui/util/PSORunner.py
CHANGED
@@ -77,7 +77,7 @@ def run_process(stdout_queue, stderr_queue, results_queue, data, folder, mode):
|
|
77
77
|
|
78
78
|
sys.stdout = old_stdout
|
79
79
|
sys.stderr = old_stderr
|
80
|
-
|
80
|
+
|
81
81
|
except Exception as e:
|
82
82
|
print("An exception occurred: ", flush=True)
|
83
83
|
print(str(e))
|
@@ -193,7 +193,7 @@ def pp(parameter, parameter_map, default=None):
|
|
193
193
|
Returns:
|
194
194
|
_type_: _description_
|
195
195
|
"""
|
196
|
-
if parameter in parameter_map.keys:
|
196
|
+
if parameter in parameter_map.keys():
|
197
197
|
if parameter_map[parameter] != "" \
|
198
198
|
and parameter_map[parameter] != "None" \
|
199
199
|
and parameter_map[parameter] != "null" \
|
File without changes
|
File without changes
|
File without changes
|