gamspy-knitro 48.6.1__py3-none-win_amd64.whl → 49.0.0__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_knitro/__init__.py +1 -1
- gamspy_knitro/{knitro1410.dll → knitro1420.dll} +0 -0
- gamspy_knitro/knxcclib64.dll +0 -0
- gamspy_knitro/optknitro.def +30 -15
- gamspy_knitro/version.py +1 -1
- {gamspy_knitro-48.6.1.dist-info → gamspy_knitro-49.0.0.dist-info}/METADATA +1 -1
- gamspy_knitro-49.0.0.dist-info/RECORD +9 -0
- gamspy_knitro-48.6.1.dist-info/RECORD +0 -9
- {gamspy_knitro-48.6.1.dist-info → gamspy_knitro-49.0.0.dist-info}/WHEEL +0 -0
- {gamspy_knitro-48.6.1.dist-info → gamspy_knitro-49.0.0.dist-info}/top_level.txt +0 -0
gamspy_knitro/__init__.py
CHANGED
|
@@ -5,7 +5,7 @@ from .version import __version__
|
|
|
5
5
|
|
|
6
6
|
directory = str(Path(__file__).resolve().parent)
|
|
7
7
|
|
|
8
|
-
files = ['
|
|
8
|
+
files = ['knitro1420.dll', 'optknitro.def', 'knxcclib64.dll']
|
|
9
9
|
|
|
10
10
|
file_paths = [directory + os.sep + file for file in files]
|
|
11
11
|
verbatim = 'KNITRO 103011 0 KN 1 0 2 LP RMIP NLP MCP MPEC RMPEC CNS DNLP RMINLP MINLP QCP MIQCP RMIQCP\ngmsgennt.cmd\ngmsgennx.exe\nknxcclib64.dll knx 1 0'
|
|
Binary file
|
gamspy_knitro/knxcclib64.dll
CHANGED
|
Binary file
|
gamspy_knitro/optknitro.def
CHANGED
|
@@ -159,10 +159,12 @@ maxfevals integer 1085 -1 minint maxint 1 3 Specifies the maximum number of func
|
|
|
159
159
|
maxit integer 1014 0 0 maxint 1 3 Specifies the maximum number of iterations before termination
|
|
160
160
|
0 Let Knitro automatically choose a value based on the problem type. Currently Knitro sets this value to 10000 for LPs/NLPs and 3000 for MIP problems.
|
|
161
161
|
n At most n>0 iterations may be performed before terminating.
|
|
162
|
-
|
|
163
|
-
maxtime_real double 1040 100000000 0 100000000 1 3 Specifies, in seconds, the maximum allowable real time before termination
|
|
162
|
+
maxtime double 1163 100000000 0 maxdouble 1 3 Specifies, in seconds, the maximum allowable real time before termination
|
|
164
163
|
opttol double 1027 1e-06 0 maxdouble 1 3 Specifies the final relative stopping tolerance for the KKT (optimality) error
|
|
165
164
|
opttolabs double 1028 0.001 0 maxdouble 1 3 Specifies the final absolute stopping tolerance for the KKT (optimality) error
|
|
165
|
+
soltype boolean 1161 0 1 3 This option specifies the solution returned by Knitro
|
|
166
|
+
0 (final) Always return the final solution to which Knitro converges.
|
|
167
|
+
1 (bestfeas) Always return the best feasible solution encountered during the optimization.
|
|
166
168
|
xtol double 1030 1e-12 0 maxdouble 1 3 The optimization process will terminate if the relative change in all components of the solution point estimate is less than \ref KNITROxtol "xtol" for \ref KNITROxtol_iters "xtol_iters"
|
|
167
169
|
xtol_iters integer 1094 0 0 maxint 1 3 The optimization process will terminate if the relative change in the solution estimate is less than \ref KNITROxtol "xtol" for \ref KNITROxtol_iters "xtol_iters" consecutive iterations
|
|
168
170
|
presolve_level enumint 1122 -1 1 4 Set the level of presolve operations to enable through the Knitro presolver
|
|
@@ -394,8 +396,6 @@ mip_lpalg enumint 2019 0 1 7 Specifies which algorithm to use for any linear pro
|
|
|
394
396
|
3 1 (active) Use the Active Set (simplex) algorithm.
|
|
395
397
|
mip_maxnodes integer 2021 0 0 maxint 1 7 Specifies the maximum number of nodes explored (0 means no limit)
|
|
396
398
|
mip_maxsolves integer 2008 0 0 maxint 1 7 Specifies the maximum number of subproblem solves allowed (0 means no limit)
|
|
397
|
-
mip_maxtime_cpu double 2006 100000000 0 maxdouble 1 7 Specifies the maximum allowable CPU time in seconds for the complete MIP solution
|
|
398
|
-
mip_maxtime_real double 2007 100000000 0 maxdouble 1 7 Specifies the maximum allowable real time in seconds for the complete MIP solution
|
|
399
399
|
mip_method enumint 2001 0 1 7 Specifies which MIP method to use
|
|
400
400
|
0 1 (auto) Let Knitro automatically choose the method.
|
|
401
401
|
1 1 (BB) Use the standard branch-and-bound method.
|
|
@@ -455,6 +455,7 @@ mip_selectrule enumint 2003 0 1 7 Specifies the MIP select rule for choosing the
|
|
|
455
455
|
mip_strong_candlim integer 2028 128 0 maxint 1 7 Specifies the maximum number of candidates to explore for MIP strong branching
|
|
456
456
|
mip_strong_level integer 2029 10 0 maxint 1 7 Specifies the maximum number of tree levels on which to perform MIP strong branching
|
|
457
457
|
mip_strong_maxit integer 2027 1000 0 maxint 1 7 Specifies the maximum number of iterations to allow for MIP strong branching solves
|
|
458
|
+
mip_sub_maxtime double 2055 100000000 0 maxdouble 1 7 Specifies the maximum allowable real time in seconds for MIP node subproblems
|
|
458
459
|
mip_terminate enumint 2020 0 1 7 Specifies conditions for terminating the MIP algorithm
|
|
459
460
|
0 1 (optimal) Terminate at optimum.
|
|
460
461
|
1 1 (feasible) Terminate at first integer feasible point.
|
|
@@ -463,11 +464,10 @@ mip_zerohalf enumint 2036 -1 1 7 Specifies rules for adding zero-half cuts
|
|
|
463
464
|
0 1 (none) Do not add zero-half cuts.
|
|
464
465
|
1 1 (root) Add zero-half cuts derived from the root node only.
|
|
465
466
|
2 1 (tree) Add zero-half cuts derived at every node depending on the solution of the relaxation and the cut generation strategy.
|
|
466
|
-
ma_maxtime_cpu double 1064 100000000 0 maxdouble 1 8 Specifies, in seconds, the maximum allowable CPU time before termination for the multi-algorithm ("MA") procedure (\ref KNITROalgorithm "algorithm"=5)
|
|
467
|
-
ma_maxtime_real double 1065 100000000 0 maxdouble 1 8 Specifies, in seconds, the maximum allowable real time before termination for the multi-algorithm ("MA") procedure (\ref KNITROalgorithm "algorithm"=5)
|
|
468
467
|
ma_outsub boolean 1067 0 1 8 Enable writing algorithm output to files for the multi-algorithm (\ref KNITROalgorithm "algorithm"=5) procedure
|
|
469
468
|
0 Do not write detailed algorithm output to files.
|
|
470
469
|
1 Write detailed algorithm output to files named knitro_ma_*.log.
|
|
470
|
+
ma_sub_maxtime double 1164 100000000 0 maxdouble 1 8 Specifies, in seconds, the maximum allowable real time for multi-algorithm ("MA") subproblems (\ref KNITROalgorithm "algorithm"=5)
|
|
471
471
|
ma_terminate enumint 1063 1 1 8 Define the termination condition for the multi-algorithm (\ref KNITROalgorithm "algorithm"=5) procedure
|
|
472
472
|
0 1 Terminate after all algorithms have completed.
|
|
473
473
|
1 1 Terminate at first locally optimal solution.
|
|
@@ -483,8 +483,6 @@ ms_maxbndrange double 1035 1000 0 maxdouble 1 9 Specifies the maximum range that
|
|
|
483
483
|
ms_maxsolves integer 1034 0 0 maxint 1 9 Specifies how many start points to try in multi-start
|
|
484
484
|
0 Let Knitro automatically choose a value based on the problem size and context.
|
|
485
485
|
n Try n>0 start points.
|
|
486
|
-
ms_maxtime_cpu double 1036 100000000 0 maxdouble 1 9 Specifies, in seconds, the maximum allowable CPU time before termination
|
|
487
|
-
ms_maxtime_real double 1037 100000000 0 maxdouble 1 9 Specifies, in seconds, the maximum allowable real time before termination
|
|
488
486
|
ms_num_to_save integer 1051 0 0 maxint 1 9 Specifies the number of distinct feasible points to save in a file named knitro_mspoints
|
|
489
487
|
ms_numthreads integer 1137 0 0 maxint 1 9 Specify the number of threads to use for multi-start (when \ref KNITROms_enable "ms_enable" = 1)
|
|
490
488
|
ms_outsub boolean 1068 0 1 9 Enable writing algorithm output to files for the parallel multi-start procedure
|
|
@@ -493,6 +491,7 @@ ms_outsub boolean 1068 0 1 9 Enable writing algorithm output to files for the pa
|
|
|
493
491
|
ms_savetol double 1052 1e-06 0 maxdouble 1 9 Specifies the tolerance for deciding if two feasible points are distinct
|
|
494
492
|
ms_seed integer 1066 0 0 maxint 1 9 Seed value used to generate random initial points in multi-start; should be a non-negative integer
|
|
495
493
|
ms_startptrange double 1055 1e+20 0 maxdouble 1 9 Specifies the maximum range that each variable can take when determining new start points
|
|
494
|
+
ms_sub_maxtime double 1165 100000000 0 maxdouble 1 9 Specifies, in seconds, the maximum allowable real time for multi-start subproblems (i.e. local solves from a given initial point)
|
|
496
495
|
ms_terminate enumint 1054 4 1 9 Specifies the condition for terminating multi-start
|
|
497
496
|
0 1 (maxsolves) Terminate after ms_maxsolves.
|
|
498
497
|
1 1 (optimal) Terminate after the first local optimal solution is found or ms_maxsolves, whichever comes first.
|
|
@@ -535,13 +534,12 @@ outmode enumint 1016 0 1 11 Specifies where to direct the output from Knitro
|
|
|
535
534
|
1 1 (file) Output is sent to a file named knitro.log.
|
|
536
535
|
2 1 (both) Output is directed to both the screen and file knitro.log.
|
|
537
536
|
outname string 1105 "" 1 11 Use to specify a custom filename when output is written to a file using \ref KNITROoutmode "outmode"
|
|
538
|
-
tuner_maxtime_cpu double 1072 100000000 0 maxdouble 1 12 Specifies, in seconds, the maximum allowable CPU time before terminating the Knitro-Tuner
|
|
539
|
-
tuner_maxtime_real double 1073 100000000 0 maxdouble 1 12 Specifies, in seconds, the maximum allowable real time before terminating the Knitro-Tuner
|
|
540
537
|
tuner_optionsfile string 1071 "" 1 12 Can be used to specify the location of a Tuner options file
|
|
541
538
|
tuner_outsub enumint 1074 0 1 12 Enable writing additional Tuner subproblem solve output to files for the Knitro-Tuner procedure (\ref KNITROtuner "tuner"=1)
|
|
542
539
|
0 1 Do not write detailed solve output to files.
|
|
543
540
|
1 1 Write summary solve output to a file named knitro_tuner_summary.log.
|
|
544
541
|
2 1 Write detailed individual solve output to files named knitro_tuner_*.log.
|
|
542
|
+
tuner_sub_maxtime double 1166 100000000 0 maxdouble 1 12 Specifies, in seconds, the maximum allowable real time for Knitro-Tuner subproblems (i.e. individual solves with a particular option setting)
|
|
545
543
|
tuner_terminate enumint 1075 0 1 12 Define the termination condition for the Knitro-Tuner procedure (\ref KNITROtuner "tuner"=1)
|
|
546
544
|
0 1 Terminate after all solves have completed.
|
|
547
545
|
1 1 Terminate at first locally optimal solution.
|
|
@@ -558,6 +556,7 @@ qextractalg enumint 0 0 1 1 quadratic extraction algorithm in GAMS interface
|
|
|
558
556
|
3 1 Concurrent: Uses ThreePass and DoubleForward in parallel. As soon as one finishes, the other one stops.
|
|
559
557
|
threads integer 0 1 minint maxint 1 10 default thread count
|
|
560
558
|
useq boolean 0 1 0 1 consider quadratic equations as general nonlinear equations when disabled
|
|
559
|
+
uselsq boolean 0 0 0 1 use Knitro least-squares solver (CNS models only)
|
|
561
560
|
initvalues0 enumint 0 2 1 1 Enable use of initial guess for levels and marginals (first solve)
|
|
562
561
|
0 1 Using no initial values
|
|
563
562
|
1 1 Using all initial values
|
|
@@ -570,6 +569,16 @@ initvalues enumint 0 1 1 1 Enable use of initial guess for levels and marginals
|
|
|
570
569
|
* synonym section
|
|
571
570
|
*
|
|
572
571
|
feastol_abs synonym feastolabs
|
|
572
|
+
maxtime_cpu synonym maxtime
|
|
573
|
+
maxtime_real synonym maxtime
|
|
574
|
+
mip_maxtime_cpu synonym maxtime
|
|
575
|
+
mip_maxtime_real synonym maxtime
|
|
576
|
+
ma_maxtime_cpu synonym maxtime
|
|
577
|
+
ma_maxtime_real synonym maxtime
|
|
578
|
+
ms_maxtime_cpu synonym maxtime
|
|
579
|
+
ms_maxtime_real synonym maxtime
|
|
580
|
+
tuner_maxtime_cpu synonym maxtime
|
|
581
|
+
tuner_maxtime_real synonym maxtime
|
|
573
582
|
opttol_abs synonym opttolabs
|
|
574
583
|
bar_pencons synonym bar_penaltycons
|
|
575
584
|
bar_penrule synonym bar_penaltyrule
|
|
@@ -578,12 +587,10 @@ mip_integral_gap_rel synonym mip_opt_gap_rel
|
|
|
578
587
|
par_msnumthreads synonym ms_numthreads
|
|
579
588
|
par_blasnumthreads synonym blas_numthreads
|
|
580
589
|
par_lsnumthreads synonym linsolver_numthreads
|
|
581
|
-
tuner_maxtimecpu synonym tuner_maxtime_cpu
|
|
582
|
-
tuner_maxtimereal synonym tuner_maxtime_real
|
|
583
590
|
par_numthreads synonym threads
|
|
584
591
|
numthreads synonym threads
|
|
585
592
|
iterlim synonym maxit
|
|
586
|
-
reslim synonym
|
|
593
|
+
reslim synonym maxtime
|
|
587
594
|
nodlim synonym mip_maxnodes
|
|
588
595
|
optca synonym mip_opt_gap_abs
|
|
589
596
|
optcr synonym mip_opt_gap_rel
|
|
@@ -600,8 +607,16 @@ synon deprecated
|
|
|
600
607
|
par_msnumthreads
|
|
601
608
|
par_blasnumthreads
|
|
602
609
|
par_lsnumthreads
|
|
603
|
-
|
|
604
|
-
|
|
610
|
+
maxtime_cpu
|
|
611
|
+
maxtime_real
|
|
612
|
+
mip_maxtime_cpu
|
|
613
|
+
mip_maxtime_real
|
|
614
|
+
ma_maxtime_cpu
|
|
615
|
+
ma_maxtime_real
|
|
616
|
+
ms_maxtime_cpu
|
|
617
|
+
ms_maxtime_real
|
|
618
|
+
tuner_maxtime_cpu
|
|
619
|
+
tuner_maxtime_real
|
|
605
620
|
*
|
|
606
621
|
* Groups
|
|
607
622
|
* <group-ident> group <group-number <help-context> <help-text>
|
gamspy_knitro/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '
|
|
1
|
+
__version__ = '49.0.0'
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
gamspy_knitro/__init__.py,sha256=_jfyUy6R0xhl8A-u8UvGMXF-l_Rs0hj3o2AOM3lNQxc,409
|
|
2
|
+
gamspy_knitro/knitro1420.dll,sha256=Vxvuv5pJe42CiYlcXlt4Bm_RlQeUQiRSX6Hb3QTRPTM,105309184
|
|
3
|
+
gamspy_knitro/knxcclib64.dll,sha256=ukuqk_lwVBCairpCnIcokhjGSumfQd4gzwzW-oBIMfM,435200
|
|
4
|
+
gamspy_knitro/optknitro.def,sha256=OS72uKZ68g7EHPwK0dy9gcNwmpTM2zhw0V7OcH4KAPc,52143
|
|
5
|
+
gamspy_knitro/version.py,sha256=nfP8G8Meutq0UM4inllSV31YldlwZ35zvdXYNB-c_so,22
|
|
6
|
+
gamspy_knitro-49.0.0.dist-info/METADATA,sha256=1vnXsYDdt6DqNnLWsEJzSf6hR75qrHs7QYP6-5GbbqQ,61
|
|
7
|
+
gamspy_knitro-49.0.0.dist-info/WHEEL,sha256=cZOoNXTb5cGvqWPaHgg-60EYRgRgAGrsY2SANolCyNA,103
|
|
8
|
+
gamspy_knitro-49.0.0.dist-info/top_level.txt,sha256=9pwJNp8thP_p87qcDC6kMpp6stQh3CtIriAsnMw8F8Y,14
|
|
9
|
+
gamspy_knitro-49.0.0.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
gamspy_knitro/__init__.py,sha256=zvg7fSmBkhqgyNfnL8vu5XS_-mYmnWyfkqaHP_ov8kY,409
|
|
2
|
-
gamspy_knitro/knitro1410.dll,sha256=PnHF6bhNnHYiePkND7PDFhpGMvQkqbXBtzM0bZPZ1Dk,105286656
|
|
3
|
-
gamspy_knitro/knxcclib64.dll,sha256=L4432AaX5gyjFo7ybbLCWnpGTOwQmVXe4OTrFaHEf-w,433152
|
|
4
|
-
gamspy_knitro/optknitro.def,sha256=7hXjZGWQlgw8M23Ib9jOijGqAyC0ccOowLEeerXKcdM,52121
|
|
5
|
-
gamspy_knitro/version.py,sha256=NlwiYmA-u9CB9dWiagQcD_d7rBwtpMThfkQeS2OxGJQ,22
|
|
6
|
-
gamspy_knitro-48.6.1.dist-info/METADATA,sha256=tPhLSb4gNDHcNOh6006ZKce7uRBpzWIKhetoYVuYenA,61
|
|
7
|
-
gamspy_knitro-48.6.1.dist-info/WHEEL,sha256=cZOoNXTb5cGvqWPaHgg-60EYRgRgAGrsY2SANolCyNA,103
|
|
8
|
-
gamspy_knitro-48.6.1.dist-info/top_level.txt,sha256=9pwJNp8thP_p87qcDC6kMpp6stQh3CtIriAsnMw8F8Y,14
|
|
9
|
-
gamspy_knitro-48.6.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|