mg-pso-gui 0.2.10__py3-none-any.whl → 0.2.12__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.10.dist-info → mg_pso_gui-0.2.12.dist-info}/METADATA +1 -1
- {mg_pso_gui-0.2.10.dist-info → mg_pso_gui-0.2.12.dist-info}/RECORD +6 -6
- mgpsogui/gui/OptionManager.py +1 -5
- {mg_pso_gui-0.2.10.dist-info → mg_pso_gui-0.2.12.dist-info}/WHEEL +0 -0
- {mg_pso_gui-0.2.10.dist-info → mg_pso_gui-0.2.12.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.2.10.dist-info → mg_pso_gui-0.2.12.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,7 @@ mgpsogui/__init__.py,sha256=q7AfBjeJABnFtbsZnsObpUwaXKPDVYtz46G6MKXLF74,42
|
|
2
2
|
mgpsogui/mgpsogui.py,sha256=NIZmyNcbwC8EgSwf1ubdMUSJscrIEgoD4jLYziqHQ-k,148
|
3
3
|
mgpsogui/start.yaml,sha256=ZjCVLb-MLqAxrGRm9kA7_SDpa-45EuKIELNQ2QqCAiU,4713
|
4
4
|
mgpsogui/gui/HomePage.py,sha256=B0uwmD49aiqRZ-hyzv5ZhceG3ymWzFS2CoGsiOuMeX0,21593
|
5
|
-
mgpsogui/gui/OptionManager.py,sha256=
|
5
|
+
mgpsogui/gui/OptionManager.py,sha256=8Wl2bBxsVYPIk2SmF9zXb-oNY3X2HtdWOStIV9gRfAU,20023
|
6
6
|
mgpsogui/gui/OptionManager_backup.py,sha256=TCWfPnHL2foN5id47jsi267lamRG6yGU6y_M29eOOJk,18530
|
7
7
|
mgpsogui/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
mgpsogui/gui/General/ParameterView.py,sha256=G0UW84dsL9O3uOth6SviC1hSoar4vDeq_kyefEuD284,5082
|
@@ -68,8 +68,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
|
|
68
68
|
mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
|
69
69
|
mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
|
70
70
|
mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
|
71
|
-
mg_pso_gui-0.2.
|
72
|
-
mg_pso_gui-0.2.
|
73
|
-
mg_pso_gui-0.2.
|
74
|
-
mg_pso_gui-0.2.
|
75
|
-
mg_pso_gui-0.2.
|
71
|
+
mg_pso_gui-0.2.12.dist-info/METADATA,sha256=krMm6WOmQv30AMKQ007XwW4_GOeb1prnIe5nSb3Hmig,9455
|
72
|
+
mg_pso_gui-0.2.12.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
73
|
+
mg_pso_gui-0.2.12.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
|
74
|
+
mg_pso_gui-0.2.12.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
|
75
|
+
mg_pso_gui-0.2.12.dist-info/RECORD,,
|
mgpsogui/gui/OptionManager.py
CHANGED
@@ -1,7 +1,4 @@
|
|
1
1
|
from tkinter import StringVar as sv
|
2
|
-
from tkinter import IntVar as iv
|
3
|
-
from tkinter import BooleanVar as bv
|
4
|
-
from tkinter import DoubleVar as dv
|
5
2
|
import json
|
6
3
|
import os
|
7
4
|
|
@@ -133,7 +130,7 @@ class OptionManager():
|
|
133
130
|
"override_parameter": [],
|
134
131
|
"objective_functions": [],
|
135
132
|
"name": sv(),
|
136
|
-
"open":
|
133
|
+
"open": True}
|
137
134
|
obj["name"].set("Group " + str(len(self._data[self._mode_sv.get()]["steps"]) + 1))
|
138
135
|
|
139
136
|
if "parameter_objects" in step:
|
@@ -142,7 +139,6 @@ class OptionManager():
|
|
142
139
|
"name": sv(),
|
143
140
|
"min_bound": sv(),
|
144
141
|
"max_bound": sv(),
|
145
|
-
"bounds": (sv(), sv()),
|
146
142
|
"default_value": sv(),
|
147
143
|
"optimal_value": sv(),
|
148
144
|
"type": sv(),
|
File without changes
|
File without changes
|
File without changes
|