File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -683,6 +683,8 @@ def select(self,
683683 return None
684684 min_set_len = sl
685685
686+ logger (f"Get { min_set_len } seeds per instance/algorithm/objective/"
687+ f"encoding combination." )
686688 use_seeds : list [list [int ]] = [
687689 sorted (st )[:min_set_len ] for st in inst_seeds ]
688690 logger (f"Found { len (use_seeds )} seeds to use." )
Original file line number Diff line number Diff line change 22from typing import Final
33
44#: the version string of `moptipy`
5- __version__ : Final [str ] = "0.9.171 "
5+ __version__ : Final [str ] = "0.9.172 "
Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ project_urls =
7575include_package_data = True
7676install_requires =
7777 cmaes >= 0.12.0
78- intel-cmplr-lib-rt >= 2025.3.2
7978 numpy >= 2.3.5
8079 numba >= 0.63.1
8180 matplotlib >= 3.10.8
@@ -86,6 +85,10 @@ packages = find:
8685python_requires = >= 3.12
8786zip_safe = False
8887
88+ [options.extras_require]
89+ performance =
90+ intel-cmplr-lib-rt >= 2025.3.2
91+
8992[options.package_data]
9093moptipy = py.typed
9194moptipy.examples.jssp = *.txt
You can’t perform that action at this time.
0 commit comments