omniopt2 6929__py3-none-any.whl → 6954__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.
- .omniopt.py +26 -38
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt.py +26 -38
- {omniopt2-6929.dist-info → omniopt2-6954.dist-info}/METADATA +1 -1
- {omniopt2-6929.dist-info → omniopt2-6954.dist-info}/RECORD +34 -34
- omniopt2.egg-info/PKG-INFO +1 -1
- pyproject.toml +1 -1
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.colorfunctions.sh +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.general.sh +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.helpers.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt_plot_general.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt_plot_kde.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt_plot_scatter.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt_plot_worker.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.random_generator.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/.shellscript_functions +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/LICENSE +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/apt-dependencies.txt +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/omniopt +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/omniopt_docker +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/omniopt_evaluate +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/omniopt_plot +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/omniopt_share +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/requirements.txt +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/setup.py +0 -0
- {omniopt2-6929.data → omniopt2-6954.data}/data/bin/test_requirements.txt +0 -0
- {omniopt2-6929.dist-info → omniopt2-6954.dist-info}/WHEEL +0 -0
- {omniopt2-6929.dist-info → omniopt2-6954.dist-info}/licenses/LICENSE +0 -0
- {omniopt2-6929.dist-info → omniopt2-6954.dist-info}/top_level.txt +0 -0
.omniopt.py
CHANGED
@@ -8279,12 +8279,6 @@ def plot_pareto_frontier_sixel(data: Any, x_metric: str, y_metric: str) -> None:
|
|
8279
8279
|
|
8280
8280
|
plt.close(fig)
|
8281
8281
|
|
8282
|
-
@beartype
|
8283
|
-
def convert_to_serializable(obj: np.ndarray) -> Union[str, list]:
|
8284
|
-
if isinstance(obj, np.ndarray):
|
8285
|
-
return obj.tolist()
|
8286
|
-
raise TypeError(f"Object of type {type(obj).__name__} is not JSON serializable")
|
8287
|
-
|
8288
8282
|
@beartype
|
8289
8283
|
def pareto_front_general(
|
8290
8284
|
x: np.ndarray,
|
@@ -8645,29 +8639,9 @@ def get_result_minimize_flag(path_to_calculate: str, resname: str) -> bool:
|
|
8645
8639
|
return minmax[index] == "min"
|
8646
8640
|
|
8647
8641
|
@beartype
|
8648
|
-
def
|
8649
|
-
folder = get_current_run_folder()
|
8650
|
-
original_file = os.path.join(folder, "pareto_front_table.txt")
|
8651
|
-
old_file = original_file + "_OLD"
|
8652
|
-
|
8653
|
-
try:
|
8654
|
-
# Delete the old backup file if it exists
|
8655
|
-
if os.path.exists(old_file):
|
8656
|
-
os.remove(old_file)
|
8657
|
-
|
8658
|
-
# Rename the original file to the backup name if it exists
|
8659
|
-
if os.path.exists(original_file):
|
8660
|
-
os.rename(original_file, old_file)
|
8661
|
-
except Exception as e:
|
8662
|
-
print_debug(f"Error while processing file: {e}")
|
8663
|
-
|
8664
|
-
@beartype
|
8665
|
-
def show_pareto_frontier_data(path_to_calculate: str, res_names: list, disable_sixel_and_table: bool = False) -> None:
|
8666
|
-
if len(res_names) <= 1:
|
8667
|
-
print_debug(f"--result_names (has {len(res_names)} entries) must be at least 2.")
|
8668
|
-
return
|
8669
|
-
|
8642
|
+
def get_pareto_front_data(path_to_calculate: str, res_names: list) -> dict:
|
8670
8643
|
pareto_front_data: dict = {}
|
8644
|
+
|
8671
8645
|
all_combinations = list(combinations(range(len(arg_result_names)), 2))
|
8672
8646
|
|
8673
8647
|
skip = False
|
@@ -8691,10 +8665,22 @@ def show_pareto_frontier_data(path_to_calculate: str, res_names: list, disable_s
|
|
8691
8665
|
print_red("Calculating pareto-fronts was cancelled by pressing CTRL-c")
|
8692
8666
|
skip = True
|
8693
8667
|
|
8694
|
-
|
8695
|
-
|
8668
|
+
return pareto_front_data
|
8669
|
+
|
8670
|
+
@beartype
|
8671
|
+
def show_pareto_frontier_data(path_to_calculate: str, res_names: list, disable_sixel_and_table: bool = False) -> None:
|
8672
|
+
if len(res_names) <= 1:
|
8673
|
+
print_debug(f"--result_names (has {len(res_names)} entries) must be at least 2.")
|
8674
|
+
return
|
8675
|
+
|
8676
|
+
pareto_front_data: dict = get_pareto_front_data(path_to_calculate, res_names)
|
8677
|
+
|
8678
|
+
pareto_points = {}
|
8696
8679
|
|
8697
8680
|
for metric_x in pareto_front_data.keys():
|
8681
|
+
if metric_x not in pareto_points:
|
8682
|
+
pareto_points[metric_x] = {}
|
8683
|
+
|
8698
8684
|
for metric_y in pareto_front_data[metric_x].keys():
|
8699
8685
|
calculated_frontier = pareto_front_data[metric_x][metric_y]
|
8700
8686
|
|
@@ -8706,12 +8692,8 @@ def show_pareto_frontier_data(path_to_calculate: str, res_names: list, disable_s
|
|
8706
8692
|
else:
|
8707
8693
|
print(f"Not showing pareto-front-sixel for {path_to_calculate}")
|
8708
8694
|
|
8709
|
-
|
8710
|
-
|
8711
|
-
"means": calculated_frontier[metric_x][metric_y]["means"],
|
8712
|
-
"absolute_metrics": arg_result_names,
|
8713
|
-
"idxs": calculated_frontier[metric_x][metric_y]["idxs"]
|
8714
|
-
}
|
8695
|
+
if len(calculated_frontier[metric_x][metric_y]["idxs"]):
|
8696
|
+
pareto_points[metric_x][metric_y] = sorted(calculated_frontier[metric_x][metric_y]["idxs"])
|
8715
8697
|
|
8716
8698
|
rich_table = pareto_front_as_rich_table(
|
8717
8699
|
calculated_frontier[metric_x][metric_y]["idxs"],
|
@@ -8731,8 +8713,8 @@ def show_pareto_frontier_data(path_to_calculate: str, res_names: list, disable_s
|
|
8731
8713
|
console.print(rich_table)
|
8732
8714
|
text_file.write(capture.get())
|
8733
8715
|
|
8734
|
-
with open(f"{get_current_run_folder()}/
|
8735
|
-
json.dump(
|
8716
|
+
with open(f"{get_current_run_folder()}/pareto_idxs.json", mode="w", encoding="utf-8") as pareto_idxs_json_handle:
|
8717
|
+
json.dump(pareto_points, pareto_idxs_json_handle)
|
8736
8718
|
|
8737
8719
|
live_share_after_pareto()
|
8738
8720
|
|
@@ -9053,6 +9035,8 @@ def post_job_calculate_pareto_front() -> None:
|
|
9053
9035
|
|
9054
9036
|
@beartype
|
9055
9037
|
def job_calculate_pareto_front(path_to_calculate: str, disable_sixel_and_table: bool = False) -> bool:
|
9038
|
+
pf_start_time = time.time()
|
9039
|
+
|
9056
9040
|
# Returns true if it fails
|
9057
9041
|
if not path_to_calculate:
|
9058
9042
|
return True
|
@@ -9121,6 +9105,10 @@ def job_calculate_pareto_front(path_to_calculate: str, disable_sixel_and_table:
|
|
9121
9105
|
|
9122
9106
|
show_pareto_or_error_msg(path_to_calculate, res_names, disable_sixel_and_table)
|
9123
9107
|
|
9108
|
+
pf_end_time = time.time()
|
9109
|
+
|
9110
|
+
print_debug(f"Calculating the pareto-front took {pf_end_time - pf_start_time} seconds")
|
9111
|
+
|
9124
9112
|
return False
|
9125
9113
|
|
9126
9114
|
@beartype
|
@@ -8279,12 +8279,6 @@ def plot_pareto_frontier_sixel(data: Any, x_metric: str, y_metric: str) -> None:
|
|
8279
8279
|
|
8280
8280
|
plt.close(fig)
|
8281
8281
|
|
8282
|
-
@beartype
|
8283
|
-
def convert_to_serializable(obj: np.ndarray) -> Union[str, list]:
|
8284
|
-
if isinstance(obj, np.ndarray):
|
8285
|
-
return obj.tolist()
|
8286
|
-
raise TypeError(f"Object of type {type(obj).__name__} is not JSON serializable")
|
8287
|
-
|
8288
8282
|
@beartype
|
8289
8283
|
def pareto_front_general(
|
8290
8284
|
x: np.ndarray,
|
@@ -8645,29 +8639,9 @@ def get_result_minimize_flag(path_to_calculate: str, resname: str) -> bool:
|
|
8645
8639
|
return minmax[index] == "min"
|
8646
8640
|
|
8647
8641
|
@beartype
|
8648
|
-
def
|
8649
|
-
folder = get_current_run_folder()
|
8650
|
-
original_file = os.path.join(folder, "pareto_front_table.txt")
|
8651
|
-
old_file = original_file + "_OLD"
|
8652
|
-
|
8653
|
-
try:
|
8654
|
-
# Delete the old backup file if it exists
|
8655
|
-
if os.path.exists(old_file):
|
8656
|
-
os.remove(old_file)
|
8657
|
-
|
8658
|
-
# Rename the original file to the backup name if it exists
|
8659
|
-
if os.path.exists(original_file):
|
8660
|
-
os.rename(original_file, old_file)
|
8661
|
-
except Exception as e:
|
8662
|
-
print_debug(f"Error while processing file: {e}")
|
8663
|
-
|
8664
|
-
@beartype
|
8665
|
-
def show_pareto_frontier_data(path_to_calculate: str, res_names: list, disable_sixel_and_table: bool = False) -> None:
|
8666
|
-
if len(res_names) <= 1:
|
8667
|
-
print_debug(f"--result_names (has {len(res_names)} entries) must be at least 2.")
|
8668
|
-
return
|
8669
|
-
|
8642
|
+
def get_pareto_front_data(path_to_calculate: str, res_names: list) -> dict:
|
8670
8643
|
pareto_front_data: dict = {}
|
8644
|
+
|
8671
8645
|
all_combinations = list(combinations(range(len(arg_result_names)), 2))
|
8672
8646
|
|
8673
8647
|
skip = False
|
@@ -8691,10 +8665,22 @@ def show_pareto_frontier_data(path_to_calculate: str, res_names: list, disable_s
|
|
8691
8665
|
print_red("Calculating pareto-fronts was cancelled by pressing CTRL-c")
|
8692
8666
|
skip = True
|
8693
8667
|
|
8694
|
-
|
8695
|
-
|
8668
|
+
return pareto_front_data
|
8669
|
+
|
8670
|
+
@beartype
|
8671
|
+
def show_pareto_frontier_data(path_to_calculate: str, res_names: list, disable_sixel_and_table: bool = False) -> None:
|
8672
|
+
if len(res_names) <= 1:
|
8673
|
+
print_debug(f"--result_names (has {len(res_names)} entries) must be at least 2.")
|
8674
|
+
return
|
8675
|
+
|
8676
|
+
pareto_front_data: dict = get_pareto_front_data(path_to_calculate, res_names)
|
8677
|
+
|
8678
|
+
pareto_points = {}
|
8696
8679
|
|
8697
8680
|
for metric_x in pareto_front_data.keys():
|
8681
|
+
if metric_x not in pareto_points:
|
8682
|
+
pareto_points[metric_x] = {}
|
8683
|
+
|
8698
8684
|
for metric_y in pareto_front_data[metric_x].keys():
|
8699
8685
|
calculated_frontier = pareto_front_data[metric_x][metric_y]
|
8700
8686
|
|
@@ -8706,12 +8692,8 @@ def show_pareto_frontier_data(path_to_calculate: str, res_names: list, disable_s
|
|
8706
8692
|
else:
|
8707
8693
|
print(f"Not showing pareto-front-sixel for {path_to_calculate}")
|
8708
8694
|
|
8709
|
-
|
8710
|
-
|
8711
|
-
"means": calculated_frontier[metric_x][metric_y]["means"],
|
8712
|
-
"absolute_metrics": arg_result_names,
|
8713
|
-
"idxs": calculated_frontier[metric_x][metric_y]["idxs"]
|
8714
|
-
}
|
8695
|
+
if len(calculated_frontier[metric_x][metric_y]["idxs"]):
|
8696
|
+
pareto_points[metric_x][metric_y] = sorted(calculated_frontier[metric_x][metric_y]["idxs"])
|
8715
8697
|
|
8716
8698
|
rich_table = pareto_front_as_rich_table(
|
8717
8699
|
calculated_frontier[metric_x][metric_y]["idxs"],
|
@@ -8731,8 +8713,8 @@ def show_pareto_frontier_data(path_to_calculate: str, res_names: list, disable_s
|
|
8731
8713
|
console.print(rich_table)
|
8732
8714
|
text_file.write(capture.get())
|
8733
8715
|
|
8734
|
-
with open(f"{get_current_run_folder()}/
|
8735
|
-
json.dump(
|
8716
|
+
with open(f"{get_current_run_folder()}/pareto_idxs.json", mode="w", encoding="utf-8") as pareto_idxs_json_handle:
|
8717
|
+
json.dump(pareto_points, pareto_idxs_json_handle)
|
8736
8718
|
|
8737
8719
|
live_share_after_pareto()
|
8738
8720
|
|
@@ -9053,6 +9035,8 @@ def post_job_calculate_pareto_front() -> None:
|
|
9053
9035
|
|
9054
9036
|
@beartype
|
9055
9037
|
def job_calculate_pareto_front(path_to_calculate: str, disable_sixel_and_table: bool = False) -> bool:
|
9038
|
+
pf_start_time = time.time()
|
9039
|
+
|
9056
9040
|
# Returns true if it fails
|
9057
9041
|
if not path_to_calculate:
|
9058
9042
|
return True
|
@@ -9121,6 +9105,10 @@ def job_calculate_pareto_front(path_to_calculate: str, disable_sixel_and_table:
|
|
9121
9105
|
|
9122
9106
|
show_pareto_or_error_msg(path_to_calculate, res_names, disable_sixel_and_table)
|
9123
9107
|
|
9108
|
+
pf_end_time = time.time()
|
9109
|
+
|
9110
|
+
print_debug(f"Calculating the pareto-front took {pf_end_time - pf_start_time} seconds")
|
9111
|
+
|
9124
9112
|
return False
|
9125
9113
|
|
9126
9114
|
@beartype
|
@@ -3,7 +3,7 @@
|
|
3
3
|
.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
4
4
|
.gitignore,sha256=OMaFWOR6wxjAlI85rF3euQcjQFFAl1F34abZkltKnaU,3714
|
5
5
|
.helpers.py,sha256=G4TLhtj9u1GdAB9ACnjscsqz-Eu85ew1QAAU93ctcRQ,30432
|
6
|
-
.omniopt.py,sha256=
|
6
|
+
.omniopt.py,sha256=xYHzgrV97DUuA22O4Q8dD2pGFzQeKGfEaGNi4zJNsjE,372498
|
7
7
|
.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
8
8
|
.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
9
9
|
.omniopt_plot_gpu_usage.py,sha256=bQmjc1Xq_9rlJhiEvy93Q5hXGs4ZKRVg3v7uaMrv9Go,5108
|
@@ -25,43 +25,43 @@ omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
|
25
25
|
omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
26
26
|
omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
27
27
|
omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
|
28
|
-
pyproject.toml,sha256=
|
28
|
+
pyproject.toml,sha256=bCqr2Kq8uZxrj5a_NTkXe_GVr6rttmVIwi-uJ_emlA4,397
|
29
29
|
requirements.txt,sha256=4-CwlGCOMAexOgLozRy9_5HwpQVsZFALR_uv69xGsgE,308
|
30
30
|
setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
|
31
31
|
test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
|
32
|
-
omniopt2-
|
33
|
-
omniopt2-
|
34
|
-
omniopt2-
|
35
|
-
omniopt2-
|
36
|
-
omniopt2-
|
37
|
-
omniopt2-
|
38
|
-
omniopt2-
|
39
|
-
omniopt2-
|
40
|
-
omniopt2-
|
41
|
-
omniopt2-
|
42
|
-
omniopt2-
|
43
|
-
omniopt2-
|
44
|
-
omniopt2-
|
45
|
-
omniopt2-
|
46
|
-
omniopt2-
|
47
|
-
omniopt2-
|
48
|
-
omniopt2-
|
49
|
-
omniopt2-
|
50
|
-
omniopt2-
|
51
|
-
omniopt2-
|
52
|
-
omniopt2-
|
53
|
-
omniopt2-
|
54
|
-
omniopt2-
|
55
|
-
omniopt2-
|
56
|
-
omniopt2-
|
57
|
-
omniopt2-
|
58
|
-
omniopt2-
|
59
|
-
omniopt2.egg-info/PKG-INFO,sha256=
|
32
|
+
omniopt2-6954.data/data/bin/.colorfunctions.sh,sha256=CDlgjwrsrHR_E6c-Qak5wZlotArXm-nf9sVvXePzGZA,1083
|
33
|
+
omniopt2-6954.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
34
|
+
omniopt2-6954.data/data/bin/.helpers.py,sha256=G4TLhtj9u1GdAB9ACnjscsqz-Eu85ew1QAAU93ctcRQ,30432
|
35
|
+
omniopt2-6954.data/data/bin/.omniopt.py,sha256=xYHzgrV97DUuA22O4Q8dD2pGFzQeKGfEaGNi4zJNsjE,372498
|
36
|
+
omniopt2-6954.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
37
|
+
omniopt2-6954.data/data/bin/.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
38
|
+
omniopt2-6954.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=bQmjc1Xq_9rlJhiEvy93Q5hXGs4ZKRVg3v7uaMrv9Go,5108
|
39
|
+
omniopt2-6954.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
40
|
+
omniopt2-6954.data/data/bin/.omniopt_plot_scatter.py,sha256=VFkly4lbmXeegWoyiu1fLO82JThPJa_iYVZIAPGPP64,8670
|
41
|
+
omniopt2-6954.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
42
|
+
omniopt2-6954.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=6014iELQcS83WAAwOqVIUMZQewNP4jntlTQncTY3NTA,10527
|
43
|
+
omniopt2-6954.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=PFDJt2dDCWSsZntDsDa5imfRLF0h5lCExH8sFp8ptVs,6465
|
44
|
+
omniopt2-6954.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
|
45
|
+
omniopt2-6954.data/data/bin/.omniopt_plot_worker.py,sha256=bD-byr3NTnJ0qF4M_CogdXnhw7sVrzs1eFoqTtDjmfE,4590
|
46
|
+
omniopt2-6954.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
47
|
+
omniopt2-6954.data/data/bin/.shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
|
48
|
+
omniopt2-6954.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
49
|
+
omniopt2-6954.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
50
|
+
omniopt2-6954.data/data/bin/omniopt,sha256=RIi0yZALrZGefiejun1fkDJ0LX95WymXd2xZFlglMsQ,48072
|
51
|
+
omniopt2-6954.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
52
|
+
omniopt2-6954.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
53
|
+
omniopt2-6954.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
54
|
+
omniopt2-6954.data/data/bin/omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
|
55
|
+
omniopt2-6954.data/data/bin/requirements.txt,sha256=4-CwlGCOMAexOgLozRy9_5HwpQVsZFALR_uv69xGsgE,308
|
56
|
+
omniopt2-6954.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
|
57
|
+
omniopt2-6954.data/data/bin/test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
|
58
|
+
omniopt2-6954.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
59
|
+
omniopt2.egg-info/PKG-INFO,sha256=fRaxJK0QumpkZuXr1e39HgjOI-dASOYnPALlyUD45MY,5286
|
60
60
|
omniopt2.egg-info/SOURCES.txt,sha256=kXBlYs2_3BE6tKUH1egGFa_9X5w8EQ5pm9dKgPEvdhY,770
|
61
61
|
omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
62
62
|
omniopt2.egg-info/requires.txt,sha256=4Yz6l6MaP7IW0SiKxbYKVvF0qAVAdyUo6_EgbiMII8E,785
|
63
63
|
omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
64
|
-
omniopt2-
|
65
|
-
omniopt2-
|
66
|
-
omniopt2-
|
67
|
-
omniopt2-
|
64
|
+
omniopt2-6954.dist-info/METADATA,sha256=fRaxJK0QumpkZuXr1e39HgjOI-dASOYnPALlyUD45MY,5286
|
65
|
+
omniopt2-6954.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
66
|
+
omniopt2-6954.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
67
|
+
omniopt2-6954.dist-info/RECORD,,
|
omniopt2.egg-info/PKG-INFO
CHANGED
pyproject.toml
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{omniopt2-6929.data → omniopt2-6954.data}/data/bin/.omniopt_plot_scatter_generation_method.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|