mg-pso-gui 0.1.162__py3-none-any.whl → 0.1.163__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.162
3
+ Version: 0.1.163
4
4
  Summary: GUI for MG-PSO
5
5
  Author: Robert Cordingly
6
6
  Author-email: <rcording@uw.ed>
@@ -36,7 +36,7 @@ mgpsogui/util/GraphGenerator.py,sha256=HZZSmC-p_Cfjsf1XnL6kLKI59frjQ0VYoZd-NAbmB
36
36
  mgpsogui/util/PSORunner.py,sha256=Bk6IXsBKSB33uccTJX7xagYwXHLgUbvpcM5qoi1MXHo,6170
37
37
  mgpsogui/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
38
  mgpsogui/util/debug.py,sha256=Swzny9_1S-CCONWGssj9iDoSpbwu5Vr4f95g_9L8bec,19759
39
- mgpsogui/util/helpers.py,sha256=tKnvnEj_XqKvstGrmvQcEYVJV1siJm9f7WfK3f9nKRE,2555
39
+ mgpsogui/util/helpers.py,sha256=Ht2rge_4pGO7halz6KoLsL2eukB0k2tlkx68lBBmBA8,2669
40
40
  mgpsogui/util/sampler_test_driver.py,sha256=1iJTLVFZ_VCsuIdl3mXQBA1GNAH5jJO3z5h4E_bd5U8,3703
41
41
  mgpsogui/util/CTkToolTip/__init__.py,sha256=G1jxV55hGtGgwyC1sR-uUUdasDdh0XZgcI-aILgGYA0,225
42
42
  mgpsogui/util/CTkToolTip/ctk_tooltip.py,sha256=SZMovpQIGvdpDRbqCKl9SHs92DrFCO2MOYL2ifolvOE,6329
@@ -58,8 +58,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
58
58
  mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
59
59
  mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
60
60
  mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
61
- mg_pso_gui-0.1.162.dist-info/METADATA,sha256=cEOKYXZgY_vq64m0cTc5WPL7bOo04NQ1f1OQCiGjPuM,9460
62
- mg_pso_gui-0.1.162.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
63
- mg_pso_gui-0.1.162.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
64
- mg_pso_gui-0.1.162.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
65
- mg_pso_gui-0.1.162.dist-info/RECORD,,
61
+ mg_pso_gui-0.1.163.dist-info/METADATA,sha256=2FU8XsNqfBbSrQf2dVCoJYhWpR0rWtp61hQuIcK38x0,9460
62
+ mg_pso_gui-0.1.163.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
63
+ mg_pso_gui-0.1.163.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
64
+ mg_pso_gui-0.1.163.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
65
+ mg_pso_gui-0.1.163.dist-info/RECORD,,
mgpsogui/util/helpers.py CHANGED
@@ -59,6 +59,8 @@ def parse_pso_error(file_path, num_steps):
59
59
  percent = 0
60
60
  last_percent = 0
61
61
  final_percent = 0
62
+ final_round = 0
63
+ final_step = 0
62
64
 
63
65
  for line in lines:
64
66
  best_cost = float(line.split('best_cost=')[1].strip())
@@ -75,6 +77,9 @@ def parse_pso_error(file_path, num_steps):
75
77
  best_costs = []
76
78
  percents = []
77
79
 
80
+ final_round = round
81
+ final_step = step
82
+
78
83
  step += 1
79
84
  if step > num_steps:
80
85
  step = 1
@@ -87,4 +92,4 @@ def parse_pso_error(file_path, num_steps):
87
92
 
88
93
  last_percent = percent
89
94
 
90
- return {"round": round, "step": step, "percent": final_percent, "data": round_steps}
95
+ return {"round": final_round, "step": final_step, "percent": final_percent, "data": round_steps}