mg-pso-gui 0.1.184__py3-none-any.whl → 0.1.185__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mg-pso-gui
3
- Version: 0.1.184
3
+ Version: 0.1.185
4
4
  Summary: GUI for MG-PSO
5
5
  Author: Robert Cordingly
6
6
  Author-email: <rcording@uw.ed>
@@ -16,7 +16,7 @@ mgpsogui/gui/SetupTab/ListParametersView.py,sha256=wYcDcaooYkw-y7XW6dJUwhTWxLuUU
16
16
  mgpsogui/gui/SetupTab/OptimalParameterView.py,sha256=VKn-4BlVyqspFIOkbWsM0q9pYVsmqnSND0xP2hDKb60,1785
17
17
  mgpsogui/gui/SetupTab/SetupTab.py,sha256=8f_xqmMaD8grmSKFFUHm8zIGEDrSUzU_sNW6CdRLrrE,2436
18
18
  mgpsogui/gui/SetupTab/StaticParameterView.py,sha256=iEG-UpBBlAJabZo3MG768oLqOROjUPc23tKOSd47IUc,2739
19
- mgpsogui/gui/SetupTab/StepView.py,sha256=w4r79SNvfd6DLRZpHj3T4ma00Cm5py-4mhjLOJyH4dQ,6605
19
+ mgpsogui/gui/SetupTab/StepView.py,sha256=Ty2dettVhxV8uQLsZdh6R36xYzkP0l9aPdgYjbxXiws,6772
20
20
  mgpsogui/gui/SetupTab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  mgpsogui/gui/VisualizeTab/MatrixEditor.py,sha256=-nwVw4FizlbVZdnM7r8-bexowF_qUtoeQ0Mu0mZijFQ,2851
22
22
  mgpsogui/gui/VisualizeTab/SideBar.py,sha256=342SridpIqL6LBRE2rDAoUQqbMYCBCiSL3xNo3iPzz8,21936
@@ -59,8 +59,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
59
59
  mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
60
60
  mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
61
61
  mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
62
- mg_pso_gui-0.1.184.dist-info/METADATA,sha256=YZ_W2GhNu74KtAsfWu5wf7VjmLxkeZD3nnjlhc9pjQ4,9456
63
- mg_pso_gui-0.1.184.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
64
- mg_pso_gui-0.1.184.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
65
- mg_pso_gui-0.1.184.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
66
- mg_pso_gui-0.1.184.dist-info/RECORD,,
62
+ mg_pso_gui-0.1.185.dist-info/METADATA,sha256=VXydc5QKDtrCZm4-dyMevcT-2CfvjsM3wnVPQ3XrgWk,9456
63
+ mg_pso_gui-0.1.185.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
64
+ mg_pso_gui-0.1.185.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
65
+ mg_pso_gui-0.1.185.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
66
+ mg_pso_gui-0.1.185.dist-info/RECORD,,
@@ -132,10 +132,10 @@ class StepView(CTkScrollableFrame):
132
132
  row=row, columnspan=2, column=0, padx=(10, 10), pady=(10, 10), sticky="ew")
133
133
 
134
134
  if (self.mode == "Sensitivity Analysis"):
135
+ CTkLabel(self, text="Sensitivity Analysis").grid(row=1, column=0, columnspan=2, padx=(10, 10), pady=(10, 10), sticky="nsew")
135
136
  self.analysisFrame = CTkFrame(self)
136
- self.analysisFrame.grid(row=0, column=0, padx=(
137
- 10, 10), pady=(10, 10), sticky="nsew")
137
+ self.analysisFrame.grid(row=2, column=0, columnspan=2, padx=(10, 10), pady=(10, 10), sticky="nsew")
138
138
  self.analysisFrame.grid_columnconfigure((0, 1, 2), weight=1)
139
- CTkLabel(self.analysisFrame, text="Col 1").grid(row=0, column=0, padx=(10, 10), pady=(10, 10), sticky="nsew")
140
- CTkLabel(self.analysisFrame, text="Col 2").grid(row=0, column=1, padx=(10, 10), pady=(10, 10), sticky="nsew")
141
- CTkLabel(self.analysisFrame, text="Col 3").grid(row=0, column=2, padx=(10, 10), pady=(10, 10), sticky="nsew")
139
+ CTkLabel(self.analysisFrame, text="Parameters").grid(row=0, column=0, padx=(10, 10), pady=(10, 10), sticky="nsew")
140
+ CTkLabel(self.analysisFrame, text="Positive Best Metrics").grid(row=0, column=1, padx=(10, 10), pady=(10, 10), sticky="nsew")
141
+ CTkLabel(self.analysisFrame, text="Zero Best Metrics").grid(row=0, column=2, padx=(10, 10), pady=(10, 10), sticky="nsew")