mg-pso-gui 0.1.62__py3-none-any.whl → 0.1.63__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.1.62.dist-info → mg_pso_gui-0.1.63.dist-info}/METADATA +1 -1
- {mg_pso_gui-0.1.62.dist-info → mg_pso_gui-0.1.63.dist-info}/RECORD +7 -7
- mgpsogui/gui/SetupTab/OptimalParameterView.py +4 -0
- mgpsogui/gui/SetupTab/SetupTab.py +5 -5
- {mg_pso_gui-0.1.62.dist-info → mg_pso_gui-0.1.63.dist-info}/WHEEL +0 -0
- {mg_pso_gui-0.1.62.dist-info → mg_pso_gui-0.1.63.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.1.62.dist-info → mg_pso_gui-0.1.63.dist-info}/top_level.txt +0 -0
|
@@ -13,8 +13,8 @@ mgpsogui/gui/SetupTab/BoundsList.py,sha256=L77UEaUJNiUE-ZsYIl44tWRb1zBfxaEQ-bAG1
|
|
|
13
13
|
mgpsogui/gui/SetupTab/CalibrationParametersView.py,sha256=ppVBHG3nphku9-P6Z8az-HTpgk8vHxnj-A5m80BZTgA,2784
|
|
14
14
|
mgpsogui/gui/SetupTab/FunctionsList.py,sha256=tUqW43VWpxFpdo9UHaPvFQ0CtCo9mFI3mri52ikntrE,4092
|
|
15
15
|
mgpsogui/gui/SetupTab/ListParametersView.py,sha256=wYcDcaooYkw-y7XW6dJUwhTWxLuUUOK5tGUFVHBf3ck,7352
|
|
16
|
-
mgpsogui/gui/SetupTab/OptimalParameterView.py,sha256=
|
|
17
|
-
mgpsogui/gui/SetupTab/SetupTab.py,sha256=
|
|
16
|
+
mgpsogui/gui/SetupTab/OptimalParameterView.py,sha256=zi0ms0kzGF-iJTM3hjvl4fp7nslf03cw0wtbKzcxvYw,1781
|
|
17
|
+
mgpsogui/gui/SetupTab/SetupTab.py,sha256=bqb_kgDaTi0oEOjPNBCbdyHaGvCvMRG6LAZ5DXq89vU,2443
|
|
18
18
|
mgpsogui/gui/SetupTab/StaticParameterView.py,sha256=iEG-UpBBlAJabZo3MG768oLqOROjUPc23tKOSd47IUc,2739
|
|
19
19
|
mgpsogui/gui/SetupTab/StepView.py,sha256=oG5Q-3xpTRP1f_PbNvohKctrbpD63zLAJzHD00bN44k,5531
|
|
20
20
|
mgpsogui/gui/SetupTab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -46,8 +46,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
|
|
|
46
46
|
mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
|
|
47
47
|
mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
|
|
48
48
|
mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
|
|
49
|
-
mg_pso_gui-0.1.
|
|
50
|
-
mg_pso_gui-0.1.
|
|
51
|
-
mg_pso_gui-0.1.
|
|
52
|
-
mg_pso_gui-0.1.
|
|
53
|
-
mg_pso_gui-0.1.
|
|
49
|
+
mg_pso_gui-0.1.63.dist-info/METADATA,sha256=yKlpg5pigHqgFLk3NfOwbhH_ZDcBzxV18lrZrhd6-Zk,9458
|
|
50
|
+
mg_pso_gui-0.1.63.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
51
|
+
mg_pso_gui-0.1.63.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
|
|
52
|
+
mg_pso_gui-0.1.63.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
|
|
53
|
+
mg_pso_gui-0.1.63.dist-info/RECORD,,
|
|
@@ -27,6 +27,10 @@ class OptimalParameterView(CTkScrollableFrame):
|
|
|
27
27
|
self.containerFrame.grid(row=0, column=0, padx=(5, 5), pady=(5, 5), sticky="nsew")
|
|
28
28
|
self.containerFrame.grid_columnconfigure((0, 1), weight=1)
|
|
29
29
|
|
|
30
|
+
CTkLabel(self.containerFrame, text="Name:").grid(row=row, column=0, columnspan=1, padx=5, pady=5, sticky="")
|
|
31
|
+
CTkLabel(self.containerFrame, text="Value:").grid(row=row, column=1, columnspan=1, padx=5, pady=5, sticky="")
|
|
32
|
+
row += 1
|
|
33
|
+
|
|
30
34
|
self.steps = self.option_manager.get_steps()
|
|
31
35
|
|
|
32
36
|
for step in self.steps:
|
|
@@ -37,12 +37,12 @@ def create_tab(self, tab):
|
|
|
37
37
|
self.static_param_frame.grid_columnconfigure(0, weight=1)
|
|
38
38
|
self.static_param_frame.grid_rowconfigure(0, weight=1)
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
40
|
+
self.calib_param_frame = cpv.CalibrationParametersView(self.paramtabview.tab(tab2), option_manager=self.option_manager)
|
|
41
|
+
self.calib_param_frame.grid(row=0, column=0, padx=(10, 10), pady=(10, 0), sticky="nsew")
|
|
42
|
+
self.calib_param_frame.grid_columnconfigure(0, weight=1)
|
|
43
|
+
self.calib_param_frame.grid_rowconfigure(0, weight=1)
|
|
44
44
|
|
|
45
|
-
self.optimal_param_frame = opv.OptimalParameterView(self.paramtabview.tab(
|
|
45
|
+
self.optimal_param_frame = opv.OptimalParameterView(self.paramtabview.tab(tab3), option_manager=self.option_manager)
|
|
46
46
|
self.optimal_param_frame.grid(row=0, column=0, padx=(10, 10), pady=(10, 0), sticky="nsew")
|
|
47
47
|
self.optimal_param_frame.grid_columnconfigure(0, weight=1)
|
|
48
48
|
self.optimal_param_frame.grid_rowconfigure(0, weight=1)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|