gamspy-base 52.0.0rc1__py3-none-macosx_13_0_x86_64.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.
Files changed (60) hide show
  1. gamspy_base/__init__.py +18 -0
  2. gamspy_base/eula.pdf +0 -0
  3. gamspy_base/gams +0 -0
  4. gamspy_base/gamscmex.out +0 -0
  5. gamspy_base/gamserrs.txt +1318 -0
  6. gamspy_base/gamsgetkey +0 -0
  7. gamspy_base/gamslice.txt +8 -0
  8. gamspy_base/gamsprobe +0 -0
  9. gamspy_base/gamsstmp.txt +1 -0
  10. gamspy_base/gdxdiff +0 -0
  11. gamspy_base/gdxdump +0 -0
  12. gamspy_base/gevopt.def +102 -0
  13. gamspy_base/gmscmpun.txt +56 -0
  14. gamspy_base/gmscvnus.run +4 -0
  15. gamspy_base/gmscvnux.out +0 -0
  16. gamspy_base/gmsgenus.run +4 -0
  17. gamspy_base/gmsgenux.out +0 -0
  18. gamspy_base/gmske_us.run +11 -0
  19. gamspy_base/gmske_ux.out +912 -0
  20. gamspy_base/gmsprmun.txt +12 -0
  21. gamspy_base/gmssb_us.run +4 -0
  22. gamspy_base/gmssb_ux.out +0 -0
  23. gamspy_base/libco4cclib64.dylib +0 -0
  24. gamspy_base/libconopt464.dylib +0 -0
  25. gamspy_base/libconoptlu.dylib +0 -0
  26. gamspy_base/libcplex2212.dylib +0 -0
  27. gamspy_base/libcpxcclib64.dylib +0 -0
  28. gamspy_base/libcrypto.3.dylib +0 -0
  29. gamspy_base/libcvdcclib64.dylib +0 -0
  30. gamspy_base/libdctmdclib64.dylib +0 -0
  31. gamspy_base/libgcc_s.1.1.dylib +0 -0
  32. gamspy_base/libgdxcclib64.dylib +0 -0
  33. gamspy_base/libgdxdclib64.dylib +0 -0
  34. gamspy_base/libgfortran.5.dylib +0 -0
  35. gamspy_base/libgmdcclib64.dylib +0 -0
  36. gamspy_base/libgmszlib164.dylib +0 -0
  37. gamspy_base/libgomp.1.dylib +0 -0
  38. gamspy_base/libgsscclib64.dylib +0 -0
  39. gamspy_base/libguccclib64.dylib +0 -0
  40. gamspy_base/libjoatdclib64.dylib +0 -0
  41. gamspy_base/liboptdclib64.dylib +0 -0
  42. gamspy_base/libpath52.dylib +0 -0
  43. gamspy_base/libptccclib64.dylib +0 -0
  44. gamspy_base/libquadmath.0.dylib +0 -0
  45. gamspy_base/libssl.3.dylib +0 -0
  46. gamspy_base/libstdc++.6.dylib +0 -0
  47. gamspy_base/mps2gms +0 -0
  48. gamspy_base/optconopt.def +351 -0
  49. gamspy_base/optconvert.def +126 -0
  50. gamspy_base/optcplex.def +880 -0
  51. gamspy_base/optgams.def +724 -0
  52. gamspy_base/optnlpec.def +69 -0
  53. gamspy_base/optpath.def +231 -0
  54. gamspy_base/optsbb.def +94 -0
  55. gamspy_base/version.py +1 -0
  56. gamspy_base-52.0.0rc1.dist-info/METADATA +65 -0
  57. gamspy_base-52.0.0rc1.dist-info/RECORD +60 -0
  58. gamspy_base-52.0.0rc1.dist-info/WHEEL +5 -0
  59. gamspy_base-52.0.0rc1.dist-info/top_level.txt +1 -0
  60. minigams-env-3.129d2d53b5/lib/python3.12/site-packages/minigams/GAMSPY_BASE_README.md +58 -0
@@ -0,0 +1,69 @@
1
+ *
2
+ * optnlpec.def
3
+ *
4
+
5
+ allSolves boolean.nv 0 0 1 2 do all solves in a loop regardless of previous failure
6
+ dumpValid boolean.nv 0 0 1 2 dump valid reformulation options to a GDX file and exit
7
+ noCheck boolean.nv 0 0 1 2 do not check consistency of reformulation options
8
+ finalMu double.two 0 0 0 maxdouble 1 2 final value of parameter mu
9
+ initMu double.two 0 0 0 maxdouble 1 2 initial value of parameter mu
10
+ initSLo double 0 0 mindouble maxdouble 1 2 lower bound for artificials added to the problem
11
+ initSUp double 0 maxdouble mindouble maxdouble 1 2 upper bound for artificials added to the problem
12
+ dotGams string 0 "" 1 2 name of gams source file for scalar model
13
+ parmFile string 0 "" 1 2 extra GAMS options for running scalar model
14
+ subSolver string 0 "" 1 2 controls what subsolver to run
15
+ subSolverOpt integer 0 0 0 maxint 1 2 optfile value to pass to the subsolver
16
+ numSolves integer 0 0 0 maxint 1 2 number of looped solves
17
+ equReform integer 0 0 0 33 1 2 outdated and deprecated
18
+ testTol double 0 1e-005 0 maxdouble 1 2 tolerance for complementarity check in MPEC/MCP
19
+ terminate boolean.nv 0 0 1 2 terminate after generating scalar GAMS source code
20
+ updateFac double.two 0 1e-1 1e-280 1.0 1 2 update factor for mu
21
+ refType enumstr.two 0 "mult" 1 1 reformulation type
22
+ "mult" 1 inner product <x,f> = 0
23
+ "min" 1 NCP function min(x,f)
24
+ "CMxf" 1 Chen-Mangasarian NCP function, explicit
25
+ "CMfx" 1 Chen-Mangasarian NCP function, explicit
26
+ "fCMxf" 1 Chen-Mangasarian NCP function, intrinsic
27
+ "fCMfx" 1 Chen-Mangasarian NCP function, intrinsic
28
+ "FB" 1 Fischer-Burmeister NCP function, explicit
29
+ "fFB" 1 Fischer-Burmeister NCP function, intrinsic
30
+ "FB_neg" 1 Fischer-Burmeister NCP function negated, explicit
31
+ "fFB_neg" 1 Fischer-Burmeister NCP function negated, intrinsic
32
+ "Bill" 1 Billups function for doubly-bounded variables, explicit
33
+ "fBill" 1 Billups function for doubly-bounded variables, intrinsic
34
+ "penalty" 1 weighted penalization of non-complementarity in objective
35
+ "median" 1 median function for doubly-bounded variables, explicit
36
+ "fVUsin" 1 Veelken-Ulbrich NCP function (smoothed min), intrinsic
37
+ "fVUpow" 1 Veelken-Ulbrich NCP function (smoothed min), intrinsic
38
+ slack enumstr.two 0 "positive" 1 1 control use of slacks for function values
39
+ "none" 1 no slacks will be used
40
+ "free" 1 free slacks will be used
41
+ "positive" 1 non-negative slacks will be used
42
+ "one" 1 one free slack will be used for each h_i in the doubly bounded case
43
+ constraint enumstr.two 0 "equality" 1 1 controls use of equality/inequality
44
+ "equality" 1 use =E= constraints
45
+ "inequality" 1 use =L= constraints
46
+ aggregate enumstr.two 0 "none" 1 1 controls constraint aggregation
47
+ "none" 1 use no aggregation
48
+ "partial" 1 aggregate doubly-bounded variables separately from others
49
+ "full" 1 use maximum aggregation possible
50
+ NCPBounds enumstr.two 0 "none" 1 1 sets explicit bounds on arguments of NCP functions
51
+ "none" 1 no explicit bounds
52
+ "function" 1 explicit bound on function/slack argument
53
+ "variable" 1 explicit bound on variable argument
54
+ "all" 1 explicit bound on both function and variable arguments
55
+ *
56
+ * synonym section
57
+ *
58
+ fileName synonym dotGams
59
+ *
60
+ * indicator section
61
+ *
62
+ myeolchar EOLCOMM #
63
+ *
64
+ * Groups
65
+ * <group-ident> group <group-number <help-context> <help-text>
66
+ *
67
+ reform group 1 1 Reformulation Options
68
+ general group 2 1 General Options
69
+ *** End of file
@@ -0,0 +1,231 @@
1
+ *
2
+ * optpath.def
3
+ *
4
+ path lookup
5
+ output boolean 0 1 1 2 turns all output off or on
6
+ output_model_statistics boolean 0 0 0 2 *** hidden
7
+ cumulative_iteration_limit integer 0 10000 0 maxint 1 1 maximum minor iterations allowed
8
+ adaptive_delta_break double 0 0 mindouble maxdouble 0 1 *** hidden
9
+ adaptive_delta_current double 0 0 mindouble maxdouble 0 1 *** hidden
10
+ adaptive_delta_high double 0 0 mindouble maxdouble 0 1 *** hidden
11
+ adaptive_delta_low double 0 0 mindouble maxdouble 0 1 *** hidden
12
+ adaptive_iteration integer 0 0 minint maxint 0 1 *** hidden
13
+ adaptive_iterations_high integer 0 0 minint maxint 0 1 *** hidden
14
+ adaptive_iterations_low integer 0 0 minint maxint 0 1 *** hidden
15
+ adaptive_pivot_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
16
+ adaptive_tau_high double 0 0 mindouble maxdouble 0 1 *** hidden
17
+ adaptive_tau_low double 0 0 mindouble maxdouble 0 1 *** hidden
18
+ check_skew_symmetry boolean 0 0 0 1 *** hidden
19
+ chen_lambda double 0 0.8 0 1 1 1 lambda parameter for Chen-Chen-Kanzow residual
20
+ convergence_tolerance double 0 1e-6 0 maxdouble 1 1 stopping criterion
21
+ crash_convergence_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
22
+ crash_iteration_limit integer 0 50 0 maxint 1 1 maximum iterations allowed in basis crash
23
+ crash_merit_function enumstr 0 "fischer" 1 1 merit function used in crash method
24
+ "normal" 1 Use the normal map
25
+ "fischer" 1 Use the Fischer function
26
+ crash_method enumstr 0 "pnewton" 1 1 pnewton or none
27
+ "pnewton" 1 Use projected Newton method
28
+ "none" 1
29
+ crash_minimum_dimension integer 0 1 0 maxint 1 1 minimum problem dimension to perform crash
30
+ crash_minor_iteration_limit integer 0 0 minint maxint 0 1 *** hidden
31
+ crash_nbchange_limit integer 0 1 0 maxint 1 1 limit on crash iterations without basis change
32
+ crash_perturb boolean 0 1 1 1 perturb the problem using pnewton crash
33
+ crash_proximal_increase_factor double 0 0 mindouble maxdouble 0 1 *** hidden
34
+ crash_proximal_initial_maximum double 0 0 mindouble maxdouble 0 1 *** hidden
35
+ crash_proximal_maximum double 0 0 mindouble maxdouble 0 1 *** hidden
36
+ crash_proximal_merit_factor double 0 0 mindouble maxdouble 0 1 *** hidden
37
+ crash_proximal_minimum double 0 0 mindouble maxdouble 0 1 *** hidden
38
+ crash_proximal_shrink_factor double 0 0 mindouble maxdouble 0 1 *** hidden
39
+ crash_refine_frequency integer 0 0 minint maxint 0 1 *** hidden
40
+ crash_searchtype enumstr 0 "line" 1 1 search type to use in the crash method
41
+ "line" 1 Use a linesearch
42
+ "arc" 1 Use an arcsearch
43
+ crash_shrink_factor double 0 0 mindouble maxdouble 0 1 *** hidden
44
+ crash_sigma double 0 0 mindouble maxdouble 0 1 *** hidden
45
+ crash_stepsize_minimum double 0 0 mindouble maxdouble 0 1 *** hidden
46
+ decomposition_size_limit double 0 0 mindouble maxdouble 0 1 *** hidden
47
+ detect_sign_flip boolean 0 0 0 1 *** hidden
48
+ devex_delta double 0 0 mindouble maxdouble 0 1 *** hidden
49
+ devex_pivot_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
50
+ expand_delta double 0 0 mindouble maxdouble 0 1 *** hidden
51
+ expand_delta_current double 0 0 mindouble maxdouble 0 1 *** hidden
52
+ expand_delta_end double 0 0 mindouble maxdouble 0 1 *** hidden
53
+ expand_delta_start double 0 0 mindouble maxdouble 0 1 *** hidden
54
+ expand_iteration integer 0 0 minint maxint 0 1 *** hidden
55
+ expand_maximum_iterations integer 0 0 minint maxint 0 1 *** hidden
56
+ expand_pivot_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
57
+ expand_tau double 0 0 mindouble maxdouble 0 1 *** hidden
58
+ factorization_elbowroom double 0 0 mindouble maxdouble 0 1 *** hidden
59
+ factorization_library_name string 0 "" 1 1 name of factorization library
60
+ factorization_luroom double 0 0 mindouble maxdouble 0 1 *** hidden
61
+ factorization_method enumstr 0 "lusol" 1 1 basis package to use
62
+ "lusol" 1
63
+ "blu_lusol" 1
64
+ "umfpack" 1
65
+ "umfpack64" 1
66
+ "highs" 1
67
+ "conopt" 1
68
+ factorization_pivot_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
69
+ factorization_pivot_type integer 0 0 minint maxint 0 1 *** hidden
70
+ factorization_small_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
71
+ factorization_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
72
+ factorization_update_limit integer 0 0 minint maxint 0 1 *** hidden
73
+ factorization_update_ratio double 0 0 mindouble maxdouble 0 1 *** hidden
74
+ factorization_update_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
75
+ factorization_vectorroom double 0 0 mindouble maxdouble 0 1 *** hidden
76
+ factorization_zero_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
77
+ gmres_update_frequency integer 0 0 minint maxint 0 1 *** hidden
78
+ gradient_refine_frequency integer 0 0 minint maxint 0 1 *** hidden
79
+ gradient_searchtype enumstr 0 "arc" 1 1 search type to use on a gradient step
80
+ "line" 1 Use a linesearch
81
+ "arc" 1 Use an arcsearch
82
+ gradient_shrink_factor double 0 0 mindouble maxdouble 0 1 *** hidden
83
+ gradient_sigma double 0 0 mindouble maxdouble 0 1 *** hidden
84
+ gradient_step_limit integer 0 5 0 maxint 1 1 gradient steps allowed before restarting
85
+ gradient_stepsize_minimum double 0 0 mindouble maxdouble 0 1 *** hidden
86
+ ilu_drop_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
87
+ ilu_perturbation double 0 0 mindouble maxdouble 0 1 *** hidden
88
+ ilu_perturbation_decrease_factor double 0 0 mindouble maxdouble 0 1 *** hidden
89
+ ilu_perturbation_increase_factor double 0 0 mindouble maxdouble 0 1 *** hidden
90
+ ilu_perturbation_initial_value double 0 0 mindouble maxdouble 0 1 *** hidden
91
+ ilu_perturbation_small_value double 0 0 mindouble maxdouble 0 1 *** hidden
92
+ infinity double 0 0 mindouble maxdouble 0 1 *** hidden
93
+ interrupt_limit integer 0 5 1 maxint 1 1 ctrl-C's required before a hard kill of the solver
94
+ jacobian_smoothing double 0 0 mindouble maxdouble 0 1 *** hidden
95
+ lemke_artificial_maximum double 0 0 mindouble maxdouble 0 1 *** hidden
96
+ lemke_artificial_minimum double 0 0 mindouble maxdouble 0 1 *** hidden
97
+ lemke_cycle_limit integer 0 0 minint maxint 0 1 *** hidden
98
+ lemke_maximum_iteration_limit integer 0 0 minint maxint 0 1 *** hidden
99
+ lemke_pivot_type enumstr 0 "expand" 0 1 *** hidden
100
+ "textbook" 1
101
+ "devex" 1
102
+ "expand" 1
103
+ "adaptive" 1
104
+ lemke_rank_deficiency_iterations integer 0 10 0 maxint 1 1 number of attempts made to fix rank-deficient basis during Lemke start
105
+ lemke_rayterm_minimum double 0 0 mindouble maxdouble 0 1 *** hidden
106
+ lemke_return_best_point boolean 0 0 0 1 *** hidden
107
+ lemke_scale_residual boolean 0 0 0 1 *** hidden
108
+ lemke_size_factor double 0 0 mindouble maxdouble 0 1 *** hidden
109
+ lemke_start enumstr 0 "automatic" 1 1 frequency of lemke starts
110
+ "always" 1 Use a Lemke start for each LCP subproblem
111
+ "automatic" 1 Determined by algorithm
112
+ "first" 1 Use a Lemke start for the first LCP subproblem
113
+ lemke_start_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
114
+ lemke_start_type enumstr 0 "slack" 1 1 type of lemke start
115
+ "advanced" 1 Start Lemke method using an advanced basis
116
+ "slack" 1 Start Lemke method using an all-slack basis
117
+ linear_model_perturb boolean 0 0 0 1 *** hidden
118
+ linear_model_presolve boolean 0 0 0 1 *** hidden
119
+ linear_model_scale boolean 0 0 0 1 *** hidden
120
+ linear_scale_method enumstr 0 "diagonal" 0 1 *** hidden
121
+ "Todd" 1
122
+ "Chen" 1
123
+ "diagonal" 1
124
+ "row" 1
125
+ "col" 1
126
+ "both" 1
127
+ "symmetric" 1
128
+ "ro1" 1
129
+ "ro2" 1
130
+ "ro3" 1
131
+ "ro4" 1
132
+ major_iteration_limit integer 0 500 0 maxint 1 1 maximum major iterations allowed
133
+ merit_function enumstr 0 "fischer" 1 1 merit function to use (normal or fischer)
134
+ "normal" 1 Use the normal map
135
+ "fischer" 1 Use the Fischer function
136
+ minor_iteration_limit integer 0 1000 0 maxint 1 1 minor iterations allowed in each major iteration: default MIN(2n,iterlim)
137
+ nms boolean 0 1 1 1 allow line searching, watch-dogging, and nonmonotone descent
138
+ nms_delta_min double 0 0 mindouble maxdouble 0 1 *** hidden
139
+ nms_delta_shrink_factor double 0 0 mindouble maxdouble 0 1 *** hidden
140
+ nms_initial_monotone_steps integer 0 0 minint maxint 0 1 *** hidden
141
+ nms_initial_reference_factor double 0 20 0 maxdouble 1 1 controls size of initial reference value
142
+ nms_initial_reference_minimum double 0 0 mindouble maxdouble 0 1 *** hidden
143
+ nms_initial_stepsize_factor double 0 0 mindouble maxdouble 0 1 *** hidden
144
+ nms_initial_stepsize_minimum double 0 0 mindouble maxdouble 0 1 *** hidden
145
+ nms_large_reference_factor double 0 0 mindouble maxdouble 0 1 *** hidden
146
+ nms_maximum_watchdogs integer 0 5 0 maxint 1 1 maximum number of watchdog steps allowed
147
+ nms_memory_size integer 0 10 0 maxint 1 1 number of reference values kept
148
+ nms_mstep_frequency integer 0 10 0 maxint 1 1 frequency at which m-steps are performed
149
+ nms_pathsearch_interpolate boolean 0 0 0 1 *** hidden
150
+ nms_refine_frequency integer 0 0 minint maxint 0 1 *** hidden
151
+ nms_searchtype enumstr 0 "line" 1 1 search type to use
152
+ "line" 1 Use a linesearch
153
+ "arc" 1 Use an arcsearch
154
+ nms_shrink_factor double 0 0 mindouble maxdouble 0 1 *** hidden
155
+ nms_sigma double 0 0 mindouble maxdouble 0 1 *** hidden
156
+ nms_stepsize_minimum double 0 0 mindouble maxdouble 0 1 *** hidden
157
+ nonlinear_model_perturb boolean 0 0 0 1 *** hidden
158
+ nonlinear_model_presolve boolean 0 0 0 1 *** hidden
159
+ nonlinear_model_scale boolean 0 0 0 1 *** hidden
160
+ nonlinear_model_use_start boolean 0 0 0 1 *** hidden
161
+ output_crash_iterations boolean 0 1 1 2 output information on crash iterations
162
+ output_crash_iterations_frequency integer 0 1 1 maxint 1 2 frequency at which crash iteration log is printed
163
+ output_errors boolean 0 1 1 2 output error messages
164
+ output_factorization_singularities boolean 0 0 0 2 *** hidden
165
+ output_factorization_updates boolean 0 0 0 2 *** hidden
166
+ output_factorization_updates_frequency integer 0 0 minint maxint 0 2 *** hidden
167
+ output_final_degeneracy_statistics boolean 0 0 1 2 print information regarding degeneracy at the solution
168
+ output_final_point boolean 0 0 1 2 output final point returned from PATH
169
+ output_final_point_statistics boolean 0 1 1 2 output information about the point, function, and Jacobian at the final point
170
+ output_final_scaling_statistics boolean 0 0 1 2 display matrix norms on the Jacobian at the final point
171
+ output_final_statistics boolean 0 1 1 2 output evaluation of available merit functions at the final point
172
+ output_final_summary boolean 0 1 1 2 output summary information
173
+ output_hidden_options boolean 0 0 0 2 *** hidden
174
+ output_initial_point boolean 0 0 1 2 output initial point given to PATH
175
+ output_initial_point_statistics boolean 0 1 1 2 output information about the point, function, and Jacobian at the initial point
176
+ output_initial_scaling_statistics boolean 0 1 1 2 display matrix norms on the Jacobian at the initial point
177
+ output_initial_statistics boolean 0 0 1 2 output evaluation of available merit functions at the initial point
178
+ output_license boolean 0 0 0 2 *** hidden
179
+ output_linear_model boolean 0 0 1 2 output linear model at each major iteration
180
+ output_major_iterations boolean 0 1 1 2 output information on major iterations
181
+ output_major_iterations_frequency integer 0 1 1 maxint 1 2 frequency at which major iteration log is printed
182
+ output_maximum_zero_log integer 0 10 0 maxint 1 2 limits zero columns reported to log file
183
+ output_maximum_zero_listing integer 0 1000 0 maxint 1 2 limits zero columns reported to listing file
184
+ output_minor_iterations boolean 0 1 1 2 output information on minor iterations
185
+ output_minor_iterations_frequency integer 0 500 1 maxint 1 2 frequency at which minor iteration log is printed
186
+ output_nms_iterations boolean 0 0 0 2 *** hidden
187
+ output_nms_iterations_frequency integer 0 0 minint maxint 0 2 *** hidden
188
+ option_direct strlist 1 0 1 pass options directly to PATH library
189
+ option_file string 1 "" 1 1 name of option file for PATHLIB to read
190
+ output_options boolean 0 0 1 2 output all options and their values
191
+ output_preprocess_level integer 0 1 -1 maxint 1 2 control output of preprocessing information
192
+ output_restart_log boolean 0 1 1 2 output options during restarts
193
+ output_time boolean 1 0 1 2 output breakdown of where time is spent
194
+ output_warnings boolean 0 0 1 2 output warning messages
195
+ path_basis_modify_tol double 0 0 mindouble maxdouble 0 1 *** hidden
196
+ path_basis_modify_verbose boolean 0 0 0 1 *** hidden
197
+ preprocess boolean 0 1 1 1 turns preprocessing on/off
198
+ preprocess_implied boolean 0 0 0 1 *** hidden
199
+ preprocess_jacobian_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
200
+ preprocess_recursive boolean 0 0 0 1 *** hidden
201
+ preprocess_tighten boolean 0 0 0 1 *** hidden
202
+ preprocess_zero_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
203
+ project_start boolean 0 0 0 1 *** hidden
204
+ proximal_dual boolean 0 0 0 1 *** hidden
205
+ proximal_increase_factor double 0 0 mindouble maxdouble 0 1 *** hidden
206
+ proximal_initial double 0 0 mindouble maxdouble 0 1 *** hidden
207
+ proximal_initial_maximum double 0 0 mindouble maxdouble 0 1 *** hidden
208
+ proximal_merit_factor double 0 0 mindouble maxdouble 0 1 *** hidden
209
+ proximal_minimum double 0 0 mindouble maxdouble 0 1 *** hidden
210
+ proximal_perturbation double 0 0 0 maxdouble 1 1 initial perturbation
211
+ proximal_primal boolean 0 0 0 1 *** hidden
212
+ proximal_shrink_factor double 0 0 mindouble maxdouble 0 1 *** hidden
213
+ recovery_method enumstr 0 "none" 0 1 *** hidden
214
+ "none" 1
215
+ residual_factor double 0 0 mindouble maxdouble 0 1 *** hidden
216
+ residual_size double 0 0 mindouble maxdouble 0 1 *** hidden
217
+ restart_limit integer 0 0 minint maxint 0 1 *** hidden: maximum number of restarts attempted
218
+ restart_stationary_limit integer 0 0 minint maxint 0 1 *** hidden
219
+ restart_stationary_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
220
+ return_best_point boolean 0 0 0 1 *** hidden: return the best point encountered, not the absolute last iterate
221
+ textbook_delta double 0 0 mindouble maxdouble 0 1 *** hidden
222
+ textbook_pivot_tolerance double 0 0 mindouble maxdouble 0 1 *** hidden
223
+ time_limit double 0 0 0 maxdouble 1 1 number of seconds algorithm is allowed to run
224
+ myeolchar EOLCOMM ;#!
225
+ *
226
+ * Groups
227
+ * <group-ident> group <group-number <help-context> <help-text>
228
+ *
229
+ general group 1 1 General options
230
+ output group 2 1 Output options
231
+ *** End of file
gamspy_base/optsbb.def ADDED
@@ -0,0 +1,94 @@
1
+ *
2
+ * optsbb.def
3
+ *
4
+
5
+ reslim double 0 1000 0 maxdouble 0 1 resource limit
6
+ iterlim integer 0 10000 0 maxint 0 1 iteration limit
7
+ domlim integer 0 0 0 maxint 0 1 domain violation limit
8
+ nodlim integer 0 100 0 maxint 0 1 node limit
9
+ tryint double 0 0 0 maxdouble 0 1 tryint tolerance
10
+ optca double 0 0 0 maxdouble 0 1 absolute stopping tolerance
11
+ optcr double 0 0.1 0 maxdouble 0 1 relative stopping tolerance
12
+ cheat double 0 0 0 maxdouble 0 1 overrides GAMS Cheat parameter
13
+ cutoff double 0 0 0 maxdouble 0 1 cutoff for tree search
14
+ sysout boolean 0 0 0 1 system output
15
+ rootsolver string 0 "" 1 1 solver for the root node
16
+ subsolver string 0 "" 1 1 solver for the subproblems
17
+ loginterval integer 0 1 0 maxint 1 1 progress display interval
18
+ loglevel enumint 0 1 1 1 level of solver display
19
+ 0 1 only SBB log lines with one line every loginterval nodes
20
+ 1 1 NLP solver log for the root node plus SBB loglines as 0
21
+ 2 1 NLP solver log for all nodes plus SBB log lines as 0
22
+ subres double 0 0.0 0.0 maxdouble 1 1 resource limit for the subsolve
23
+ subiter integer 0 0 0 maxint 1 1 iteration limit for the subsolve
24
+ failseq string 0 "" 1 1 solver sequence for failed nodes
25
+ infeasseq string 0 "" 1 1 solver sequence for infeasible nodes
26
+ acceptnonopt boolean 0 0 1 1 accepts feasible solution from subsolver
27
+ avgresmult integer 0 5 -1 maxint 1 1 average resource multiplicator
28
+ nodesel enumint 0 0 1 1 node selection strategy
29
+ 0 1 automatic
30
+ 1 1 Depth First Search (DFS)
31
+ 2 1 Best Bound (BB)
32
+ 3 1 Best Estimate (BE)
33
+ 4 1 DFS/BB mix
34
+ 5 1 DFS/BE mix
35
+ 6 1 DFS/BB/BE mix
36
+ dfsstay integer 0 0 0 maxint 1 1 keeps DFS node selection after solution has been found
37
+ varsel enumint 0 0 1 1 variable selection strategy at each node
38
+ 0 1 automatic
39
+ 1 1 maximum integer infeasibility
40
+ 2 1 minimum integer infeasibility
41
+ 3 1 pseudo costs
42
+ epint double 0 1.0e-5 1e-9 1 1 1 integer feasibility tolerance
43
+ memnodes integer 0 10000 0 maxint 1 1 maximum number of nodes in memory
44
+ printbbinfo enumint 0 0 1 1 prints additional node info
45
+ 0 1 print no additional info
46
+ 1 1 print variable selection letter
47
+ 2 1 print best estimate
48
+ intsollim integer 0 2100000000 1 2100000000 1 1 maximum number of integer solutions
49
+ usercallparmfile string 0 "" 1 1 Command-line parameter include file used in GAMS command-line calls triggered by BCH
50
+ userheurcall string 0 "" 1 1 the GAMS command line to call the heuristic
51
+ usergdxname string 0 "bchout.gdx" 1 1 the name of the GDX file exported from the solver with the solution at the node
52
+ usergdxnameinc string 0 "bchout_i.gdx" 1 1 the name of the GDX file exported from the solver with the incumbent solution
53
+ userheurfreq integer 0 10 0 maxint 1 1 determines the frequency of the cut generator model calls
54
+ userheurinterval integer 0 100 0 maxint 1 1 determines the interval when to apply the multiplier for the frequency of the cut generator model calls
55
+ userheurmult integer 0 2 0 maxint 1 1 determines the multiplier for the frequency of the cut generator model calls
56
+ userheurfirst integer 0 10 0 maxint 1 1 calls the cut generator for the first n nodes
57
+ userheurobjfirst integer 0 50 0 maxint 1 1 Similar to UserHeurFirst but only calls the heuristic if the relaxed objective promises an improvement
58
+ userheurnewint boolean 0 0 1 1 calls the heuristic if the solver found a new integer feasible solution
59
+ miptrace string 0 "" 1 1 filename of MIP trace file
60
+ miptracenode integer 0 100 1 maxint 1 1 node interval when a trace record is written
61
+ miptracetime double 0 5.0 1e-5 maxdouble 1 1 time interval when a trace record is written
62
+ bbdfsmult double 0 3.0 1e-5 maxdouble 0 1 best-bound to dfs switch option
63
+ ninfmult double 0 3.0 1e-5 maxdouble 0 1 best-bound to dfs switch option
64
+ rgapmult double 0 0.9 1e-5 maxdouble 0 1 best-bound to dfs switch option
65
+ debuglevel integer 0 0 0 maxint 0 1 level of debug information printed
66
+ finalsolver string 0 "" 0 1 solver for the final solve
67
+ solvelink enumint 0 5 1 1 Solvelink for GAMS NLP solver
68
+ 1 1 Call GAMS NLP solver via script
69
+ 2 1 Call GAMS NLP solver via module
70
+ 4 0 Call NLP and MIP solver via grid script (simulate)
71
+ 5 1 Call GAMS NLP solver in memory
72
+ stopnode integer 0 0 0 maxint 0 1 node number where SBB will stop with solving node
73
+ stopexclnode integer 0 0 0 maxint 0 1 node number where SBB will stop without solving node
74
+ printrootiter boolean 0 0 0 1 prints the iterations at node 0
75
+ bemult double 0 1.0 1e-5 maxdouble 0 1 best estimate stuff
76
+ beover double 0 0.5 1e-5 maxdouble 0 1 best estimate stuff
77
+ beunder double 0 0.5 1e-5 maxdouble 0 1 best estimate stuff
78
+ lowbbcnt integer 0 10 0 maxint 0 1 best estimate stuff
79
+ medbecnt integer 0 1 0 maxint 0 1 best estimate stuff
80
+ highbecnt integer 0 10 0 maxint 0 1 best estimate stuff
81
+ printvar boolean 0 0 0 1 prints branching variable number
82
+ strict boolean 0 0 0 1 with strict enabled SBB terminates on minor problems
83
+ gdxout string 0 "" 0 1 name stem of solution GDX files
84
+ nobounds immediate nobounds 0 1 ignores bounds on options
85
+ readfile immediate readfile 0 1 read secondary option file
86
+ *
87
+ * indicator section
88
+ *
89
+ *
90
+ * Groups
91
+ * <group-ident> group <group-number <help-context> <help-text>
92
+ *
93
+ general group 1 1 General Options
94
+ *** End of file
gamspy_base/version.py ADDED
@@ -0,0 +1 @@
1
+ __version__ = '52.0.0rc1'
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: gamspy_base
3
+ Version: 52.0.0rc1
4
+ Description-Content-Type: text/markdown
5
+ Dynamic: description
6
+ Dynamic: description-content-type
7
+
8
+ # GAMSPy Base
9
+
10
+ GAMSPy Base is a subset of full GAMS installation which can be found at: https://gams.com/download/.
11
+
12
+ ## How to use it in other GAMS APIs
13
+
14
+ [Control](https://www.gams.com/latest/docs/API_PY_CONTROL.html):
15
+
16
+ ```
17
+ from gams import GamsWorkspace
18
+ from gamspy_base import directory
19
+ ws = GamsWorkspace(system_directory=directory)
20
+ ```
21
+
22
+ [Magic](https://www.gams.com/latest/docs/API_PY_MAGIC.html):
23
+
24
+ ```
25
+ %reload_ext gams.magic
26
+ from gamspy_base import directory
27
+ gams.reset(directory)
28
+ ```
29
+
30
+ [GamsInteractive](https://www.gams.com/latest/docs/API_PY_MAGIC.html#PY_MAGIC_INTERACTIVE):
31
+
32
+ ```
33
+ from gamspy_base import directory
34
+ from gams.magic import GamsInteractive
35
+ gams = GamsInteractive()
36
+ gams.reset(directory)
37
+ ```
38
+
39
+ [Transfer](https://www.gams.com/latest/docs/API_PY_GAMSTRANSFER.html):
40
+
41
+ ```
42
+ import gams.transfer as gt
43
+ from gamspy_base import directory
44
+ m = gt.Container(system_directory=directory)
45
+ ```
46
+
47
+ [Connect](https://www.gams.com/latest/docs/UG_GAMSCONNECT.html#UG_GAMSCONNECT_CUSTOM_PYTHON_CODE):
48
+
49
+ ```
50
+ from gams.connect import ConnectDatabase
51
+ from gamspy_base import directory
52
+ cdb = ConnectDatabase(directory)
53
+ ```
54
+
55
+ [GDX Expert-Level](https://www.gams.com/latest/docs/apis/expert-level/gdxqdrep.html):
56
+
57
+ ```
58
+ import gams.core.gdx as gdx
59
+ from gamspy_base import directory
60
+ rc = gdx.gdxGetReadyD(directory, 255)
61
+ ```
62
+
63
+ ## License Agreement
64
+
65
+ By downloading this software, you agree to the [GAMS license agreement](https://www.gams.com/GAMS_EULA.pdf).
@@ -0,0 +1,60 @@
1
+ gamspy_base/__init__.py,sha256=THrfACW-2lyVhv-wBELqNSOAev6FzPmkRQ1iLhiU2Bo,5047
2
+ gamspy_base/eula.pdf,sha256=2Q9rczcNINsmZIc3110QKenVtrivaUzzvOe6wzi1q4M,134031
3
+ gamspy_base/gams,sha256=s8cqiuxITZ0gQj60x4rm68GGQ2EB9uZLnvgUzz_eNkc,1857984
4
+ gamspy_base/gamscmex.out,sha256=eeyJZHomd9rWHA8NgnGS-7Y_5BQuCF1BE5IbH2Y1USc,4582768
5
+ gamspy_base/gamserrs.txt,sha256=RG0juiQ79uff8nmjNxyKElTX0huOaNkrt-jpTKr27vU,64691
6
+ gamspy_base/gamsgetkey,sha256=qncqPBxQkd6erhZhe9Nt14T9XLYD1oKsWsn8KRBqWrM,6339696
7
+ gamspy_base/gamslice.txt,sha256=du5s0CgaE0vZpaGcvu_D9z5e4Jm5oh-wAaA2wCrxW8s,528
8
+ gamspy_base/gamsprobe,sha256=SFI_lcZH6aUkHylAfajPVgipAV8BXuGTusKmdsJm_Cg,295072
9
+ gamspy_base/gamsstmp.txt,sha256=okaCboPfWk70h7FqXcu8zPbu4UsS3TMgFzkfZ9be1Dg,59
10
+ gamspy_base/gdxdiff,sha256=LTpNdWN4Yl0pgxjXOwDjNZyX-3SsCUtbCQkaL-xI_oc,345072
11
+ gamspy_base/gdxdump,sha256=WQWGHJihAjUud5gM0yfKIHtTuDhm_c00h-WAZ8psmMo,333536
12
+ gamspy_base/gevopt.def,sha256=dsn2Gj3F3-HoysGgC-G1ljcQUkXfk6q9ZT5ff1jkz1Y,5590
13
+ gamspy_base/gmscmpun.txt,sha256=vFofayw68RIAZDFpyB8O6AsXOiLnDDIwcAi8n2yLOlc,1212
14
+ gamspy_base/gmscvnus.run,sha256=7Vs7Qt_g9lWDbXyRtNdRBlAskSjGw3uRQHD3oVvjP28,103
15
+ gamspy_base/gmscvnux.out,sha256=sUQoP9qKRj4MZnvCK8krV5tVzezJdQmEi9IGN1x80gA,1685936
16
+ gamspy_base/gmsgenus.run,sha256=CWkGIbZ8GHkWqwIn8mYSwwH3FG7jotf4-TkhMtU5iLs,125
17
+ gamspy_base/gmsgenux.out,sha256=aIWtNu2PG3ZhGwO-TtiOVEjDb7p2928hmb_1DOFSs38,863104
18
+ gamspy_base/gmske_us.run,sha256=NiEZ_Zt9JSyGHN9C0a5ovU36RaHU9GU-HPdsCReUZQ8,316
19
+ gamspy_base/gmske_ux.out,sha256=xsffBtVb6Pc2YZ-RNbUCUIrZ82DG27C6B8hLyG0U_pI,30061
20
+ gamspy_base/gmsprmun.txt,sha256=pAY11XcRhHAq0wKQ4a2iujFIJQL4Pm6YylFQHNjSDK0,430
21
+ gamspy_base/gmssb_us.run,sha256=Qp0FGZmIYlIJrl9abXlFHn7VtW4xOSRrjyXXjbWyfXQ,103
22
+ gamspy_base/gmssb_ux.out,sha256=nJiSDJspa8WD0mpNopDP-Q9jb1P2rNJKTVufjYr6Wxk,532544
23
+ gamspy_base/libco4cclib64.dylib,sha256=2QXis4Be030yakS6n93BJi14_ztjehGRUWkkNvVpTKM,362032
24
+ gamspy_base/libconopt464.dylib,sha256=5yreMGOhrRIFNzTxa_IF2YS2zcXgdllzc0_YpdSLtWs,3025856
25
+ gamspy_base/libconoptlu.dylib,sha256=JQ1pxcZG6HBg6V7ZTII3Y0wE7nPsYsxtA1u-hqoBl44,1176000
26
+ gamspy_base/libcplex2212.dylib,sha256=kKG5e_ZkpqYigqrhc7C_0y_dWcHyldxB0zwbe9bD8fo,29681472
27
+ gamspy_base/libcpxcclib64.dylib,sha256=9-Y3LJbH2QFG7hpYcARw4svTTo0O0PgdDF2yLWjC-Zg,648352
28
+ gamspy_base/libcrypto.3.dylib,sha256=V3u6vDwzRMkI6etuYtSorvCsAV7N-TuzFJVXaxTQ30s,5047056
29
+ gamspy_base/libcvdcclib64.dylib,sha256=fQQ3vgPDkvfsui5C0m5gQPK6XWdV0zJ54wyu16kej5A,680096
30
+ gamspy_base/libdctmdclib64.dylib,sha256=oKkLzqgjilzphv_BZmDrGrcU4R5ClqwQpCkvjAD0BNc,581200
31
+ gamspy_base/libgcc_s.1.1.dylib,sha256=QLqFttuoq83fz3H0RP_cEbcQi9Xdq5WPVC2qpxJ-53s,233200
32
+ gamspy_base/libgdxcclib64.dylib,sha256=PIcoN7-YQYWo-efrz9YI-Wx-TgqiKep6YJ5vSOu-jFo,586624
33
+ gamspy_base/libgdxdclib64.dylib,sha256=DRbKMc7XuZU1VcIPkhZdTFHAjNbE0Cu_1Emb8_DKyrQ,803216
34
+ gamspy_base/libgfortran.5.dylib,sha256=23KWg7HBBaTInVMeWdPsvQfM9pAg5JVxCI9geyJGuVE,3957120
35
+ gamspy_base/libgmdcclib64.dylib,sha256=fOzsvtUS1qLDgVTyAkaurcDS-OPjloQ584OCNH4hV0A,1415488
36
+ gamspy_base/libgmszlib164.dylib,sha256=QuphnHXXUrREhwA9C7niPuNzFWnc-V2NZ2MpempePCA,116704
37
+ gamspy_base/libgomp.1.dylib,sha256=Ol9TnLCVkAQJyY1IM2XQdr1El1xOMctqt1oKFQd6Y-g,441872
38
+ gamspy_base/libgsscclib64.dylib,sha256=8e7g_BzFyIvL_25D9zXWzzztcAwWLcLxVtzwKs-Qx54,462656
39
+ gamspy_base/libguccclib64.dylib,sha256=ZpjRYvJgQ4O0ZNZC-bheG66Wflt6X3tIDyH8MpeSt4g,163216
40
+ gamspy_base/libjoatdclib64.dylib,sha256=ZJNN2AoFqB3Tt26yJre4n5xwABtJBW40vGX82IF9YBc,3690912
41
+ gamspy_base/liboptdclib64.dylib,sha256=O53Y7wke8UFBT-dhKAgKZdq2vtQwE0IFC81aU7mX5Ro,796976
42
+ gamspy_base/libpath52.dylib,sha256=ZcbXeqhvUfgxEavvNuBw3D2S7H1kqjeYVob-Mz-Mw0o,946912
43
+ gamspy_base/libptccclib64.dylib,sha256=KU0jHz6dN6FKna79s1GRDKx9Pp2R3Esm0o_R99rKPW4,441792
44
+ gamspy_base/libquadmath.0.dylib,sha256=5P_4DICMCampd8gT8urkCx4P8IyGUS8BXAUiDgajSw0,356192
45
+ gamspy_base/libssl.3.dylib,sha256=BpwsponL1MaIEiCcod4ds8NDvIq-_WIGBP2T6ph5Dko,785744
46
+ gamspy_base/libstdc++.6.dylib,sha256=EMUi9sFNoWAWGxeJuVnF69RZMvxFPwCcVDi67iwwvak,3648240
47
+ gamspy_base/mps2gms,sha256=FvxJR0Qj1kBw-BWPEE_4EIMHbwwoXspmwetjMAnhiLM,5368784
48
+ gamspy_base/optconopt.def,sha256=UpjQzSbvopdD1djYS7VdjF4u0RCMdDqicFGGE74xuCo,15645
49
+ gamspy_base/optconvert.def,sha256=DcKtF5AYGB4DLTWmN-huAsi2Jbw9jaW6Km1pkj8_zNY,6497
50
+ gamspy_base/optcplex.def,sha256=NaPXB9xsYoQ1IpSh91rg0HYJOOquLaF8VKKmN-YfhNs,40606
51
+ gamspy_base/optgams.def,sha256=hO6GxPlqLLercwMr8fKVoZ4CGTvm4FB-Vh6CsS8BmTc,38467
52
+ gamspy_base/optnlpec.def,sha256=4Y212OrT1Xl2GN3Jlfo8ZuFiSSo0NfUw_yw8uMWtgmg,3329
53
+ gamspy_base/optpath.def,sha256=y52dSnVrSFZO9e0tomn_jPUjMUOzZsJfOkJN1X3qocA,13755
54
+ gamspy_base/optsbb.def,sha256=hema6yiNepZvQV6UCBcBqTDxacAxVHu6mvu7UBfc50M,5115
55
+ gamspy_base/version.py,sha256=xEmi9aNSuCk1FB4wuU1dnHDcnFovh89ZPfIiCZCjNrA,25
56
+ minigams-env-3.129d2d53b5/lib/python3.12/site-packages/minigams/GAMSPY_BASE_README.md,sha256=x8ggw1-3ByQsnXtckbsru-ZEVAAfLZsXTjNXbjbqil8,1444
57
+ gamspy_base-52.0.0rc1.dist-info/METADATA,sha256=ZNym371HzYK72zI9wF71ZfujNIgwfbS2QdsWjbkuIyA,1599
58
+ gamspy_base-52.0.0rc1.dist-info/WHEEL,sha256=SFDFti0ktJEDbNgnSkwKMLyZhusCvEO6pqHMXousbqU,112
59
+ gamspy_base-52.0.0rc1.dist-info/top_level.txt,sha256=fHPPNkvwG72CqYg3ST58kZ324kKtxZxZEzxSp_mM_EE,12
60
+ gamspy_base-52.0.0rc1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+
5
+ Tag: py3-none-macosx_13_0_x86_64
@@ -0,0 +1 @@
1
+ gamspy_base
@@ -0,0 +1,58 @@
1
+ # GAMSPy Base
2
+
3
+ GAMSPy Base is a subset of full GAMS installation which can be found at: https://gams.com/download/.
4
+
5
+ ## How to use it in other GAMS APIs
6
+
7
+ [Control](https://www.gams.com/latest/docs/API_PY_CONTROL.html):
8
+
9
+ ```
10
+ from gams import GamsWorkspace
11
+ from gamspy_base import directory
12
+ ws = GamsWorkspace(system_directory=directory)
13
+ ```
14
+
15
+ [Magic](https://www.gams.com/latest/docs/API_PY_MAGIC.html):
16
+
17
+ ```
18
+ %reload_ext gams.magic
19
+ from gamspy_base import directory
20
+ gams.reset(directory)
21
+ ```
22
+
23
+ [GamsInteractive](https://www.gams.com/latest/docs/API_PY_MAGIC.html#PY_MAGIC_INTERACTIVE):
24
+
25
+ ```
26
+ from gamspy_base import directory
27
+ from gams.magic import GamsInteractive
28
+ gams = GamsInteractive()
29
+ gams.reset(directory)
30
+ ```
31
+
32
+ [Transfer](https://www.gams.com/latest/docs/API_PY_GAMSTRANSFER.html):
33
+
34
+ ```
35
+ import gams.transfer as gt
36
+ from gamspy_base import directory
37
+ m = gt.Container(system_directory=directory)
38
+ ```
39
+
40
+ [Connect](https://www.gams.com/latest/docs/UG_GAMSCONNECT.html#UG_GAMSCONNECT_CUSTOM_PYTHON_CODE):
41
+
42
+ ```
43
+ from gams.connect import ConnectDatabase
44
+ from gamspy_base import directory
45
+ cdb = ConnectDatabase(directory)
46
+ ```
47
+
48
+ [GDX Expert-Level](https://www.gams.com/latest/docs/apis/expert-level/gdxqdrep.html):
49
+
50
+ ```
51
+ import gams.core.gdx as gdx
52
+ from gamspy_base import directory
53
+ rc = gdx.gdxGetReadyD(directory, 255)
54
+ ```
55
+
56
+ ## License Agreement
57
+
58
+ By downloading this software, you agree to the [GAMS license agreement](https://www.gams.com/GAMS_EULA.pdf).