gurobipy 12.0.1__cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl → 12.0.3__cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.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.

Potentially problematic release.


This version of gurobipy might be problematic. Click here for more details.

Binary file
gurobipy/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "12.0.1"
1
+ __version__ = "12.0.3"
2
2
 
3
3
  from gurobipy._batch import Batch
4
4
 
gurobipy/_grb.py CHANGED
@@ -171,7 +171,7 @@ class GRB(object):
171
171
 
172
172
  VERSION_MAJOR = 12
173
173
  VERSION_MINOR = 0
174
- VERSION_TECHNICAL = 1
174
+ VERSION_TECHNICAL = 3
175
175
 
176
176
  # Errors
177
177
 
gurobipy/_paramdetails.py CHANGED
@@ -1,5 +1,4 @@
1
- # This file is automatically generated
2
- # Docs git ref: b0963771a0aba71f524d18b068056a7c9fdaed0f
1
+ # This file is automatically generated by docs-optimizer
3
2
 
4
3
  param_details = {
5
4
  "AggFill": {
@@ -337,7 +336,7 @@ param_details = {
337
336
  }
338
337
  },
339
338
  "Crossover": {
340
- "description": "Determines the crossover strategy used to transform the interior\nsolution produced by barrier into a basic solution (note that\ncrossover is not available for QP or QCP models). Crossover consists\nof three phases: (i) a *primal push* phase, where primal variables are\npushed to bounds, (ii) a *dual push* phase, where dual variables are\npushed to bounds, and (iii) a *cleanup* phase, where simplex is used\nto remove any primal or dual infeasibilities that remain after the\npush phases are complete. The order of the first two phases and the\nalgorithm used for the third phase are both controlled by the\nCrossover parameter:\n\n+---------------------+----------------+-----------------+-------------+\n| **Parameter value** | **First push** | **Second push** | **Cleanup** |\n|=====================|================|=================|=============|\n| 0 | Disabled | Disabled | Disabled |\n+---------------------+----------------+-----------------+-------------+\n| 1 | Dual | Primal | Primal |\n+---------------------+----------------+-----------------+-------------+\n| 2 | Dual | Primal | Dual |\n+---------------------+----------------+-----------------+-------------+\n| 3 | Primal | Dual | Primal |\n+---------------------+----------------+-----------------+-------------+\n| 4 | Primal | Dual | Dual |\n+---------------------+----------------+-----------------+-------------+\n\nThe default value of -1 chooses the strategy automatically. Use value\n0 to disable crossover; this setting returns the interior solution\ncomputed by barrier.\n\nNote:\n\n Barrier only",
339
+ "description": "Determines the crossover strategy used to transform the interior\nsolution produced by barrier into a basic solution (note that\ncrossover is not available for QP or QCP models). Crossover consists\nof three phases: (i) a *primal push* phase, where primal variables are\npushed to bounds, (ii) a *dual push* phase, where dual variables are\npushed to bounds, and (iii) a *cleanup* phase, where simplex is used\nto remove any primal or dual infeasibilities that remain after the\npush phases are complete. The order of the first two phases and the\nalgorithm used for the third phase are both controlled by the\nCrossover parameter:\n\n+---------------------+----------------+-----------------+-------------+\n| **Parameter value** | **First push** | **Second push** | **Cleanup** |\n|=====================|================|=================|=============|\n| 0 | Disabled | Disabled | Disabled |\n+---------------------+----------------+-----------------+-------------+\n| 1 | Dual | Primal | Primal |\n+---------------------+----------------+-----------------+-------------+\n| 2 | Dual | Primal | Dual |\n+---------------------+----------------+-----------------+-------------+\n| 3 | Primal | Dual | Primal |\n+---------------------+----------------+-----------------+-------------+\n| 4 | Primal | Dual | Dual |\n+---------------------+----------------+-----------------+-------------+\n\nThe default value of -1 chooses the strategy automatically. Use value\n0 to disable crossover; this setting returns the interior solution\ncomputed by barrier. Since an interior solution is typically less\naccurate than a basic solution after crossover, disabling crossover\nmay sometimes result in barrier performing more iterations to improve\nthe returned interior solution.\n\nNote:\n\n Barrier only",
341
340
  "name": "Crossover",
342
341
  "values": {
343
342
  "default": -1,
@@ -1705,7 +1704,7 @@ param_details = {
1705
1704
  }
1706
1705
  },
1707
1706
  "TuneTargetMIPGap": {
1708
- "description": "A target gap to be reached. As soon as the tuner has found parameter\nsettings that allow Gurobi to reach the target gap for the given\nmodel(s), it stops trying to improve parameter settings further.\nInstead, the tuner switches into the cleanup phase (see TuneCleanup\nparameter).",
1707
+ "description": "A target gap to be reached. As soon as the tuner has found parameter\nsettings that allow Gurobi to reach the target gap for the given\nmodel(s), it stops trying to improve parameter settings further.\nInstead, the tuner switches into the cleanup phase (see TuneCleanup\nparameter).\n\nThis parameter only applies if no other secondary tuning criterion\nthan MIPGap is set, i.e., TuneCriterion is at its default value or 1.",
1709
1708
  "name": "TuneTargetMIPGap",
1710
1709
  "values": {
1711
1710
  "default": 0.0,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gurobipy
3
- Version: 12.0.1
3
+ Version: 12.0.3
4
4
  Summary: Python interface to Gurobi
5
5
  Home-page: https://www.gurobi.com
6
6
  Author: Gurobi Optimization, LLC
@@ -25,7 +25,7 @@ Provides-Extra: matrixapi
25
25
  Requires-Dist: numpy; extra == "matrixapi"
26
26
  Requires-Dist: scipy; extra == "matrixapi"
27
27
 
28
- ![Python versions](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11%20|%203.12%20|%203.13-blue)
28
+ ![Python versions](https://img.shields.io/pypi/pyversions/gurobipy.svg)
29
29
  ![PyPI - Downloads](https://img.shields.io/pypi/dm/gurobipy)
30
30
  [![Gurobi Documentation](https://img.shields.io/badge/Help-Gurobi%20Documentation-red)](https://docs.gurobi.com/)
31
31
 
@@ -0,0 +1,28 @@
1
+ gurobipy/__init__.py,sha256=MVrc_V3HYP6y7hnY6eybNBxu-JUd4txFT2xKnVX4U4Y,918
2
+ gurobipy/__init__.pyi,sha256=eZnx_O465OWVpALd4GifdxoQIUxAXEkfLIog9Ra2vv0,96342
3
+ gurobipy/_attrconst.py,sha256=MiaSyl6PgSW0UTT8aboeGoPqhH_wY8rN1tEIvUNLRDY,16616
4
+ gurobipy/_attrutil.cpython-311-aarch64-linux-gnu.so,sha256=8Y28A7FodBcjRZ7l8lEuqbN_1rIsJUtt8cJ-0HvGXrw,227856
5
+ gurobipy/_batch.cpython-311-aarch64-linux-gnu.so,sha256=IGUADtNRHUywpsFsDivC31EeD14PBKeJdeveDDggUKA,159096
6
+ gurobipy/_callbackconst.py,sha256=1AfVcVmzdGapyreB8VW3vW4XNZu-s-g4c7gCRJno-EA,6797
7
+ gurobipy/_core.cpython-311-aarch64-linux-gnu.so,sha256=ZDCyzKqhjOLRnzNQgMSLlxvJC1TJpbdmctt1F-OXsco,1563832
8
+ gurobipy/_errorconst.py,sha256=6dzCQrZIhz7Drzmez7QVN8Q0JGgIqSABGdps6IMtC3U,3257
9
+ gurobipy/_exception.cpython-311-aarch64-linux-gnu.so,sha256=uuMNRBNPoI-r3Jdg-ouVLjmaRFTBYSRlCm1XI55DmDk,84464
10
+ gurobipy/_grb.py,sha256=1WaTtKaglyw1KSoU1DyPE4en9W9AVotcAPeh0NvUplg,7261
11
+ gurobipy/_helpers.cpython-311-aarch64-linux-gnu.so,sha256=yKQonH1ylFROoREiR2yWD6h2P19yh2qmlnO9-LXpGoc,157704
12
+ gurobipy/_matrixapi.cpython-311-aarch64-linux-gnu.so,sha256=jckMa16Zwcwwo0Erq7jodzKOOS9dDC7jhfNBFCw_p2A,2148264
13
+ gurobipy/_model.cpython-311-aarch64-linux-gnu.so,sha256=uP54uHiOj59gLmXY6MxRyP_f49NmXm9-2l8d2XtH9y0,1928664
14
+ gurobipy/_modelutil.cpython-311-aarch64-linux-gnu.so,sha256=fHE9hEZjdtiIUZMcx-5lWh9w_Y2QYPW2169mDqyrprs,239904
15
+ gurobipy/_paramconst.py,sha256=FJCm2d9JwaoelXv0P1zhtWeZGSmzS5ooM8zqvlXzBqc,19678
16
+ gurobipy/_paramdetails.py,sha256=Eve05Ore1j_tz-7S6vPPu4A4TqJ7nt5Lv8zh2jCg73w,151760
17
+ gurobipy/_statusconst.py,sha256=ZClEP0VXRsAWLzj5iVozzUgHfpfy4svJwFuY1DyNZN8,1601
18
+ gurobipy/_util.cpython-311-aarch64-linux-gnu.so,sha256=TjWyB9wjSUHDoVjJVZiZ4rfe-vo-a5zXt5jNAzL-Svk,155280
19
+ gurobipy/nlfunc.py,sha256=YoWLN6Hqr6qX-WkcxZ0_9XjMeOqSyNErMf2dAe8Jlr4,870
20
+ gurobipy/nlfunc.pyi,sha256=ict_m30E7sNMQE852db8wxRQtkgadda54sS9HeObKBw,1178
21
+ gurobipy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ gurobipy/.libs/gurobi.lic,sha256=9xDz4iLWRWHiICr_Ify12Lmd0NIfhIeObN_YbVJawnM,90
23
+ gurobipy/.libs/libgurobi120.so,sha256=F_6YYpPzKzkJLsgS-6FCBkxOodJOTIaEhOy9LmSCnRo,118889304
24
+ gurobipy-12.0.3.dist-info/LICENSE.txt,sha256=EJaZyhnM1ArhpFDQ9ZGJ_o5LEtwq5uRJga4dpxwMu7Q,156613
25
+ gurobipy-12.0.3.dist-info/METADATA,sha256=pX7cmMSenfO1nQDM0Ji8i_USE1cXnOld9CKIs1gTMgI,16395
26
+ gurobipy-12.0.3.dist-info/WHEEL,sha256=RqYCa_H4ExTuI8-45Yq2jBXN5relVxSXvr5C0JZvHeQ,153
27
+ gurobipy-12.0.3.dist-info/top_level.txt,sha256=lI8imVf2_cKV2kVT6NVXJ4sH0ib8oAKeh06ysN_0_Bg,9
28
+ gurobipy-12.0.3.dist-info/RECORD,,
@@ -1,28 +0,0 @@
1
- gurobipy/__init__.py,sha256=w-wcO5wmQAOMq6ZwgxVC8GjvBVgDrre7YgT1dk8Zv48,918
2
- gurobipy/__init__.pyi,sha256=eZnx_O465OWVpALd4GifdxoQIUxAXEkfLIog9Ra2vv0,96342
3
- gurobipy/_attrconst.py,sha256=MiaSyl6PgSW0UTT8aboeGoPqhH_wY8rN1tEIvUNLRDY,16616
4
- gurobipy/_attrutil.cpython-311-aarch64-linux-gnu.so,sha256=tIMOcjz-9EUgC7burDkvsEont3Hb9GOm0-2-ygeLSBY,227856
5
- gurobipy/_batch.cpython-311-aarch64-linux-gnu.so,sha256=PRIroMTq2CLToZgAGKU2iDnvXSlg5P0Vh3_s34PSlbc,159096
6
- gurobipy/_callbackconst.py,sha256=1AfVcVmzdGapyreB8VW3vW4XNZu-s-g4c7gCRJno-EA,6797
7
- gurobipy/_core.cpython-311-aarch64-linux-gnu.so,sha256=AQ1sxBpxEN1ixb6HuHCbhMirWTxbz3V61BDXPyIA-WE,1563832
8
- gurobipy/_errorconst.py,sha256=6dzCQrZIhz7Drzmez7QVN8Q0JGgIqSABGdps6IMtC3U,3257
9
- gurobipy/_exception.cpython-311-aarch64-linux-gnu.so,sha256=N4AGQSDoYmQ1UQFGS9MTSlT-wkCa3jg9T5A5f-XrF4s,84464
10
- gurobipy/_grb.py,sha256=cLkENlvXwS5Hm57HwYIHRMP9zKtrtRLuaBXvmuQ7-vQ,7261
11
- gurobipy/_helpers.cpython-311-aarch64-linux-gnu.so,sha256=VFTiJddpTUUFqx4EFp-OqXtxp3UYwEHgzidGISz8C34,157704
12
- gurobipy/_matrixapi.cpython-311-aarch64-linux-gnu.so,sha256=0PgU1uUMSoU7PTew875SX8l4rYethoyU8RCr3CydT4g,2148176
13
- gurobipy/_model.cpython-311-aarch64-linux-gnu.so,sha256=LC1mCyc-w352WWpzz27dk_arLkALFre8aRh5dsRv8Fg,1928224
14
- gurobipy/_modelutil.cpython-311-aarch64-linux-gnu.so,sha256=iZxZ-ZBNhamnch_F_uqGHauvdNXFO1395AmiF9PXHBA,239904
15
- gurobipy/_paramconst.py,sha256=FJCm2d9JwaoelXv0P1zhtWeZGSmzS5ooM8zqvlXzBqc,19678
16
- gurobipy/_paramdetails.py,sha256=KAB0U1H6XJoHNwaaf9cMOrW-7l1-OjltpX2qLPVRTWQ,151440
17
- gurobipy/_statusconst.py,sha256=ZClEP0VXRsAWLzj5iVozzUgHfpfy4svJwFuY1DyNZN8,1601
18
- gurobipy/_util.cpython-311-aarch64-linux-gnu.so,sha256=JrqWhUynI95laYwp2uUNlJ16Jh8151zRAYjL37ZtzAg,155280
19
- gurobipy/nlfunc.py,sha256=YoWLN6Hqr6qX-WkcxZ0_9XjMeOqSyNErMf2dAe8Jlr4,870
20
- gurobipy/nlfunc.pyi,sha256=ict_m30E7sNMQE852db8wxRQtkgadda54sS9HeObKBw,1178
21
- gurobipy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- gurobipy/.libs/gurobi.lic,sha256=9xDz4iLWRWHiICr_Ify12Lmd0NIfhIeObN_YbVJawnM,90
23
- gurobipy/.libs/libgurobi120.so,sha256=L3BvUX71ECcmX9g8Jg9xckA5E5f-sfX7WKm2Cxn4IDo,118815184
24
- gurobipy-12.0.1.dist-info/LICENSE.txt,sha256=EJaZyhnM1ArhpFDQ9ZGJ_o5LEtwq5uRJga4dpxwMu7Q,156613
25
- gurobipy-12.0.1.dist-info/METADATA,sha256=zRVE5eSWe3lrYeHxGZOU51jF_ptfBfwU0w-jjvr0F4c,16432
26
- gurobipy-12.0.1.dist-info/WHEEL,sha256=RqYCa_H4ExTuI8-45Yq2jBXN5relVxSXvr5C0JZvHeQ,153
27
- gurobipy-12.0.1.dist-info/top_level.txt,sha256=lI8imVf2_cKV2kVT6NVXJ4sH0ib8oAKeh06ysN_0_Bg,9
28
- gurobipy-12.0.1.dist-info/RECORD,,