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

Potentially problematic release.


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

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
 
Binary file
Binary file
Binary file
Binary file
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
 
Binary file
Binary file
Binary file
Binary file
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,
Binary file
gurobipy/gurobi120.dll CHANGED
Binary file
@@ -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.cp311-win_amd64.pyd,sha256=8UJjxvpypSgpGHP2rULWu4mXI_sH7-CSL0768TiNlYQ,128000
5
+ gurobipy/_batch.cp311-win_amd64.pyd,sha256=uN6EBIYefs2gnQUjT0fi2wnHEOIEnpJSe8AbQt6FlTg,93696
6
+ gurobipy/_callbackconst.py,sha256=1AfVcVmzdGapyreB8VW3vW4XNZu-s-g4c7gCRJno-EA,6797
7
+ gurobipy/_core.cp311-win_amd64.pyd,sha256=r8x6kZcIyY9qjzcYXVNjiEpkVJUdgf765tKzzKcrR-A,1228288
8
+ gurobipy/_errorconst.py,sha256=6dzCQrZIhz7Drzmez7QVN8Q0JGgIqSABGdps6IMtC3U,3257
9
+ gurobipy/_exception.cp311-win_amd64.pyd,sha256=8-RxK9ZpfpUpQ3U4tHfzvbRn9ovN44t81507XSlqyJk,50688
10
+ gurobipy/_grb.py,sha256=1WaTtKaglyw1KSoU1DyPE4en9W9AVotcAPeh0NvUplg,7261
11
+ gurobipy/_helpers.cp311-win_amd64.pyd,sha256=axADcJ5HHwnQZ_21F-vcMSRIz1ZgdgSylFIiyrHxeh8,80896
12
+ gurobipy/_matrixapi.cp311-win_amd64.pyd,sha256=8XA_idVfejEm3flvjGQMM3_0AVuF8jIX8579LZ8jAVM,1662464
13
+ gurobipy/_model.cp311-win_amd64.pyd,sha256=UmI590MNa83GbEezM_gDvAM1pzgwG7VDvXrVYCYQe-U,1438720
14
+ gurobipy/_modelutil.cp311-win_amd64.pyd,sha256=ibs21FqNfoISmhmFC3-45dnj4r9TdnCX4zJ4Z_H7548,148480
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.cp311-win_amd64.pyd,sha256=lt0LuomBG61S5bH8vRW8GaG1AmzEpiP5bCDHkgLxxZA,104960
19
+ gurobipy/gurobi.lic,sha256=9xDz4iLWRWHiICr_Ify12Lmd0NIfhIeObN_YbVJawnM,90
20
+ gurobipy/gurobi120.dll,sha256=MR9RlqONhDTVKUkIOXSC7X_qqgxkhY31425lg0MRbGo,38149592
21
+ gurobipy/nlfunc.py,sha256=YoWLN6Hqr6qX-WkcxZ0_9XjMeOqSyNErMf2dAe8Jlr4,870
22
+ gurobipy/nlfunc.pyi,sha256=ict_m30E7sNMQE852db8wxRQtkgadda54sS9HeObKBw,1178
23
+ gurobipy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ gurobipy-12.0.3.dist-info/LICENSE.txt,sha256=EJaZyhnM1ArhpFDQ9ZGJ_o5LEtwq5uRJga4dpxwMu7Q,156613
25
+ gurobipy-12.0.3.dist-info/METADATA,sha256=ASOpwJMSgJkBGwZnfGQ-6ZNHzJl8XdYz0_T8QtMg_4M,16730
26
+ gurobipy-12.0.3.dist-info/WHEEL,sha256=dCuJ4f0faaLdEJehgDqauYbxfYcPtrcUnDoQw-il14k,101
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.cp311-win_amd64.pyd,sha256=8I-l_pGwHt5z7DnJMZPmXtpR8CubVXBHSFgZyAv577U,128000
5
- gurobipy/_batch.cp311-win_amd64.pyd,sha256=kGFeK4oj-TzNeLoUyhEeAXewJTlvlSsb9gEk4UtcQjU,93696
6
- gurobipy/_callbackconst.py,sha256=1AfVcVmzdGapyreB8VW3vW4XNZu-s-g4c7gCRJno-EA,6797
7
- gurobipy/_core.cp311-win_amd64.pyd,sha256=E94Re9Tl2or_66cpssdx1Psq6EEWpG5GENBYJ8hCe_s,1228288
8
- gurobipy/_errorconst.py,sha256=6dzCQrZIhz7Drzmez7QVN8Q0JGgIqSABGdps6IMtC3U,3257
9
- gurobipy/_exception.cp311-win_amd64.pyd,sha256=M1VTQVK5GPbWISyUMjNZJkSgFPapT8JVlTh1lV47sg8,50688
10
- gurobipy/_grb.py,sha256=cLkENlvXwS5Hm57HwYIHRMP9zKtrtRLuaBXvmuQ7-vQ,7261
11
- gurobipy/_helpers.cp311-win_amd64.pyd,sha256=RdYd3NvPrLsVXks3ZSKoMsokdQamYvZ4J62Gf3NKxP8,80896
12
- gurobipy/_matrixapi.cp311-win_amd64.pyd,sha256=pHlDzOnDrjNY6uPUxHhudMFfjsV1OBU1IfQR4LID8hk,1661952
13
- gurobipy/_model.cp311-win_amd64.pyd,sha256=0TC2tS2-pq888lrW4JqI3She4LMhcFX89UyXQwaOzgw,1436672
14
- gurobipy/_modelutil.cp311-win_amd64.pyd,sha256=M0_2veynubhk1O_dhLtXB5P9XpDlE4HllYvaYRFMimI,148480
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.cp311-win_amd64.pyd,sha256=OBuq1hwGN9tahd8NvktBUKSy4U6OM6fPXQXsW3nHC-4,104960
19
- gurobipy/gurobi.lic,sha256=9xDz4iLWRWHiICr_Ify12Lmd0NIfhIeObN_YbVJawnM,90
20
- gurobipy/gurobi120.dll,sha256=35EBm_T4iJzFelC6CGURgjPuJ8c2RwZVCxnkizuK-k0,37772248
21
- gurobipy/nlfunc.py,sha256=YoWLN6Hqr6qX-WkcxZ0_9XjMeOqSyNErMf2dAe8Jlr4,870
22
- gurobipy/nlfunc.pyi,sha256=ict_m30E7sNMQE852db8wxRQtkgadda54sS9HeObKBw,1178
23
- gurobipy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- gurobipy-12.0.1.dist-info/LICENSE.txt,sha256=EJaZyhnM1ArhpFDQ9ZGJ_o5LEtwq5uRJga4dpxwMu7Q,156613
25
- gurobipy-12.0.1.dist-info/METADATA,sha256=AAMyeqnP_L1JpExmE4P074A1fY05m7HVyMZb_LTfa24,16767
26
- gurobipy-12.0.1.dist-info/WHEEL,sha256=dCuJ4f0faaLdEJehgDqauYbxfYcPtrcUnDoQw-il14k,101
27
- gurobipy-12.0.1.dist-info/top_level.txt,sha256=lI8imVf2_cKV2kVT6NVXJ4sH0ib8oAKeh06ysN_0_Bg,9
28
- gurobipy-12.0.1.dist-info/RECORD,,