gamspy-highs 51.4.0__py3-none-win_amd64.whl → 52.0.0rc1__py3-none-win_amd64.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.
gamspy_highs/__init__.py CHANGED
@@ -3,7 +3,7 @@ from pathlib import Path
3
3
  from .version import __version__
4
4
  directory = str(Path(__file__).resolve().parent)
5
5
 
6
- files = ['opthighs.def', 'hiscclib64.dll']
6
+ files = ['mkl_gams.dll', 'opthighs.def', 'hiscclib64.dll']
7
7
 
8
8
  file_paths = [directory + os.sep + file for file in files]
9
9
  verbatim = 'HIGHS 11 5 HI 1 0 2 LP MIP RMIP\ngmsgennt.cmd\ngmsgennx.exe\nhiscclib64.dll his 1 0'
Binary file
Binary file
gamspy_highs/opthighs.def CHANGED
@@ -14,6 +14,9 @@ factor_pivot_threshold double 0 0.1 0.0008 0.5 1 1 Matrix factorization pivot th
14
14
  factor_pivot_tolerance double 0 1e-10 0 1 1 1 Matrix factorization pivot tolerance
15
15
  highs_analysis_level integer 0 0 0 255 1 1 Analysis level in HiGHS
16
16
  highs_debug_level integer 0 0 0 3 1 1 Debugging level in HiGHS
17
+ hipo_block_size integer 0 128 0 maxint 1 1 Block size for dense linear algebra within HiPO
18
+ hipo_parallel_type string 0 "both" 1 1 HiPO parallel option: "tree", "node" or "both".
19
+ hipo_system string 0 "choose" 1 1 HiPO Newton system option: "augmented", "normaleq" or "choose".
17
20
  icrash boolean 0 0 1 1 Run iCrash
18
21
  icrash_approx_iter integer 0 50 0 100 1 1 iCrash approximate minimization iterations
19
22
  icrash_breakpoints boolean 0 0 1 1 Exact subproblem solution for iCrash
@@ -23,7 +26,7 @@ icrash_iterations integer 0 30 0 200 1 1 iCrash iterations
23
26
  icrash_starting_weight double 0 0.001 1e-10 1e+50 1 1 iCrash starting weight
24
27
  icrash_strategy string 0 "ICA" 1 1 Strategy for iCrash
25
28
  iis integer 0 0 0 2 1 1 whether to compute an irreducible infeasible subset of an LP
26
- iis_strategy integer 0 0 0 1 1 1 Strategy for IIS calculation: Prioritise rows (default) / Prioritise columns (0/1)
29
+ iis_strategy integer 0 0 0 2 1 1 Strategy for IIS calculation: Light test / Full and prioritise rows / Full and prioritise columns (0/1/2)
27
30
  illconditioning boolean 0 0 0 1 Whether to run ill conditioning analysis after solving an LP with a simplex method
28
31
  illconditioning_bound double 0 0.0001 0 maxdouble 0 1 Bound on ill conditioning when using ill conditioning analysis method 1
29
32
  illconditioning_constraint boolean 0 0 0 1 Whether to run ill conditioning on constraint view (alternative is variable view)
@@ -53,8 +56,10 @@ mip_heuristic_run_rins boolean 0 1 1 1 Use the RINS heuristic
53
56
  mip_heuristic_run_root_reduced_cost boolean 0 1 1 1 Use the rootReducedCost heuristic
54
57
  mip_heuristic_run_shifting boolean 0 0 1 1 Use the Shifting heuristic
55
58
  mip_heuristic_run_zi_round boolean 0 0 1 1 Use the ZI Round heuristic
59
+ mip_ipm_solver string 0 "choose" 1 1 MIP IPM solver option: "choose", "ipx" or "hipo"
56
60
  mip_lifting_for_probing integer 0 -1 -1 maxint 1 1 Level of lifting for probing that is used
57
61
  mip_lp_age_limit integer 0 10 0 32767 1 1 Maximal age of dynamic LP rows before they are removed from the LP relaxation in the MIP solver
62
+ mip_lp_solver string 0 "choose" 1 1 MIP LP solver option: "choose", "simplex", "ipm", "ipx" or "hipo"
58
63
  mip_max_improving_sols integer 0 maxint 1 maxint 1 1 Limit on the number of improving solutions found to stop the MIP solver prematurely
59
64
  mip_max_leaves integer 0 maxint 0 maxint 1 1 MIP solver max number of leaf nodes
60
65
  mip_max_nodes integer 0 maxint 0 maxint 1 1 MIP solver max number of nodes
@@ -113,7 +118,7 @@ simplex_unscaled_solution_strategy integer 0 1 0 2 1 1 Strategy for solving unsc
113
118
  simplex_update_limit integer 0 5000 0 maxint 1 1 Limit on the number of simplex UPDATE operations
114
119
  small_matrix_value double 0 1e-09 1e-12 maxdouble 1 1 Lower limit on |matrix entries|: values less than or equal to this will be treated as zero
115
120
  solution_file string 0 "" 1 1 Write solution file
116
- solver string 0 "choose" 1 1 LP algorithm to run: "simplex", "choose", "ipm", or "pdlp"; ignored for MIP
121
+ solver string 0 "choose" 1 1 LP solver option: "choose", "simplex", "ipm", "ipx", "hipo" or "pdlp"
117
122
  solvetrace string 0 "" 1 1 Name of file for writing solving progress information during MIP solve
118
123
  solvetracenodefreq integer 0 100 0 maxint 1 1 Frequency in number of nodes for writing to solve trace file
119
124
  solvetracetimefreq double 0 5 0 maxdouble 1 1 Frequency in seconds for writing to solve trace file
@@ -124,6 +129,7 @@ timeless_log boolean 0 0 1 1 Suppression of time-based data in logging
124
129
  use_implied_bounds_from_presolve boolean 0 0 1 1 Use relaxed implied bounds from presolve
125
130
  use_original_HFactor_logic boolean 0 1 1 1 Use original HFactor logic for sparse vs hyper-sparse TRANs
126
131
  write_basis_file string 0 "" 1 1 Write basis file
132
+ write_iis_model_file string 0 "" 1 1 Write IIS model file
127
133
  write_model_file string 0 "" 1 1 Write model file
128
134
  write_solution_style integer 0 0 -1 4 1 1 Style of solution file (raw = computer-readable, pretty = human-readable): -1 => HiGHS old raw (deprecated); 0 => HiGHS raw; 1 => HiGHS pretty; 2 => Glpsol raw; 3 => Glpsol pretty; 4 => HiGHS sparse raw
129
135
  *
gamspy_highs/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '51.4.0'
1
+ __version__ = '52.0.0rc1'
@@ -1,3 +1,3 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gamspy_highs
3
- Version: 51.4.0
3
+ Version: 52.0.0rc1
@@ -0,0 +1,9 @@
1
+ gamspy_highs/__init__.py,sha256=PurB8Z-F-aZyTpIUlHRTx2wALZUylyy1j0vY6Xxf8yI,343
2
+ gamspy_highs/hiscclib64.dll,sha256=b6XLSTAOnZGMz0ZQZmwmLfxIW645fawAi3Fte2olOBg,8368640
3
+ gamspy_highs/mkl_gams.dll,sha256=KQHOPk6U5WMddY4c_ATLrCrI6_jx8KqsSQGkv5gDZL0,85689344
4
+ gamspy_highs/opthighs.def,sha256=kCqwYOwmqfIaPC7xxoOzC2_TXWuPVYbzw3YVztbRDr0,13621
5
+ gamspy_highs/version.py,sha256=xEmi9aNSuCk1FB4wuU1dnHDcnFovh89ZPfIiCZCjNrA,25
6
+ gamspy_highs-52.0.0rc1.dist-info/METADATA,sha256=K2xz57v5goaikENQrI6UUKiigajV7Gis7vhRLDwVxqo,63
7
+ gamspy_highs-52.0.0rc1.dist-info/WHEEL,sha256=gHXjDjheZ9WDOEDfpaapOWZ_0adXVgYLABxOJwvOCv4,103
8
+ gamspy_highs-52.0.0rc1.dist-info/top_level.txt,sha256=t-Xx6EkaD4Hc2BEfgzl7oAbnr2-Aot5_4MdAMgoV1xY,13
9
+ gamspy_highs-52.0.0rc1.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- gamspy_highs/__init__.py,sha256=84IIihrK-Pr6OZs2QMa2Ielhp5_tRW9WtUJcNY4OqzQ,327
2
- gamspy_highs/hiscclib64.dll,sha256=DaIvzCv3bQmttlhAl2E154CK54P8yQ6SUlZCr_J4_Qg,6989312
3
- gamspy_highs/opthighs.def,sha256=wZPt8BxWtxSlaHV_HDsXu6wCifZ05SHYsAcWK5746TQ,13076
4
- gamspy_highs/version.py,sha256=gNUseCSqh1U7glcQ7-vMIqyrfVzNn6VTB9xFgTqHTdo,22
5
- gamspy_highs-51.4.0.dist-info/METADATA,sha256=1383vXBQbtdDss_IzL5nLVbCy5zr2MK3QCH1vmq5Ghg,60
6
- gamspy_highs-51.4.0.dist-info/WHEEL,sha256=gHXjDjheZ9WDOEDfpaapOWZ_0adXVgYLABxOJwvOCv4,103
7
- gamspy_highs-51.4.0.dist-info/top_level.txt,sha256=t-Xx6EkaD4Hc2BEfgzl7oAbnr2-Aot5_4MdAMgoV1xY,13
8
- gamspy_highs-51.4.0.dist-info/RECORD,,