gamspy-ipopt 52.3.0__py3-none-manylinux_2_28_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.
- gamspy_ipopt/__init__.py +9 -0
- gamspy_ipopt/libiomp5.so +0 -0
- gamspy_ipopt/libipocclib64.so +0 -0
- gamspy_ipopt/libipopt.so +0 -0
- gamspy_ipopt/libmkl_gams.so +0 -0
- gamspy_ipopt/optipopt.def +521 -0
- gamspy_ipopt/version.py +1 -0
- gamspy_ipopt-52.3.0.dist-info/METADATA +3 -0
- gamspy_ipopt-52.3.0.dist-info/RECORD +11 -0
- gamspy_ipopt-52.3.0.dist-info/WHEEL +5 -0
- gamspy_ipopt-52.3.0.dist-info/top_level.txt +1 -0
gamspy_ipopt/__init__.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import os
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
from .version import __version__
|
|
4
|
+
directory = str(Path(__file__).resolve().parent)
|
|
5
|
+
|
|
6
|
+
files = ['libipopt.so', 'libmkl_gams.so', 'libiomp5.so', 'optipopt.def', 'libipocclib64.so']
|
|
7
|
+
|
|
8
|
+
file_paths = [directory + os.sep + file for file in files]
|
|
9
|
+
verbatim = 'IPOPT 11 5 00010203040506070809 1 0 2 LP RMIP NLP CNS DNLP RMINLP QCP RMIQCP\ngmsgenus.run\ngmsgenux.out\nlibipocclib64.so ipo 1 1'
|
gamspy_ipopt/libiomp5.so
ADDED
|
Binary file
|
|
Binary file
|
gamspy_ipopt/libipopt.so
ADDED
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,521 @@
|
|
|
1
|
+
* This file is autogenerated by optipopt.
|
|
2
|
+
accept_after_max_steps integer 0 -1 -1 maxint 1 9 Accept a trial point after maximal this number of steps even if it does not satisfy line search conditions.
|
|
3
|
+
accept_every_trial_step enumstr 0 "no" 1 9 Always accept the first trial step.
|
|
4
|
+
"yes" 1
|
|
5
|
+
"no" 1
|
|
6
|
+
acceptable_compl_inf_tol double 0 0.01 0 maxdouble 1 1 "Acceptance" threshold for the complementarity conditions.
|
|
7
|
+
acceptable_constr_viol_tol double 0 0.01 0 maxdouble 1 1 "Acceptance" threshold for the constraint violation.
|
|
8
|
+
acceptable_dual_inf_tol double 0 1e+10 0 maxdouble 1 1 "Acceptance" threshold for the dual infeasibility.
|
|
9
|
+
acceptable_iter integer 0 0 0 maxint 1 1 Number of "acceptable" iterates before triggering termination.
|
|
10
|
+
acceptable_obj_change_tol double 0 1e+20 0 maxdouble 1 1 "Acceptance" stopping criterion based on objective function change.
|
|
11
|
+
acceptable_tol double 0 1e-06 0 maxdouble 1 1 "Acceptable" convergence tolerance (relative).
|
|
12
|
+
adaptive_mu_globalization enumstr 0 "obj-constr-filter" 1 8 Globalization strategy for the adaptive mu selection mode.
|
|
13
|
+
"kkt-error" 1 nonmonotone decrease of kkt-error
|
|
14
|
+
"obj-constr-filter" 1 2-dim filter for objective and constraint violation
|
|
15
|
+
"never-monotone-mode" 1 disables globalization
|
|
16
|
+
adaptive_mu_kkt_norm_type enumstr 0 "2-norm-squared" 1 8 Norm used for the KKT error in the adaptive mu globalization strategies.
|
|
17
|
+
"1-norm" 1 use the 1-norm (abs sum)
|
|
18
|
+
"2-norm-squared" 1 use the 2-norm squared (sum of squares)
|
|
19
|
+
"max-norm" 1 use the infinity norm (max)
|
|
20
|
+
"2-norm" 1 use 2-norm
|
|
21
|
+
adaptive_mu_kkterror_red_fact double 0 0.9999 0 1 1 8 Sufficient decrease factor for "kkt-error" globalization strategy.
|
|
22
|
+
adaptive_mu_kkterror_red_iters integer 0 4 0 maxint 1 8 Maximum number of iterations requiring sufficient progress.
|
|
23
|
+
adaptive_mu_monotone_init_factor double 0 0.8 0 maxdouble 1 8 Determines the initial value of the barrier parameter when switching to the monotone mode.
|
|
24
|
+
adaptive_mu_restore_previous_iterate enumstr 0 "no" 1 8 Indicates if the previous accepted iterate should be restored if the monotone mode is entered.
|
|
25
|
+
"yes" 1
|
|
26
|
+
"no" 1
|
|
27
|
+
alpha_for_y enumstr 0 "primal" 1 9 Method to determine the step size for constraint multipliers (alpha_y) .
|
|
28
|
+
"primal" 1 use primal step size
|
|
29
|
+
"bound-mult" 1 use step size for the bound multipliers (good for LPs)
|
|
30
|
+
"min" 1 use the min of primal and bound multipliers
|
|
31
|
+
"max" 1 use the max of primal and bound multipliers
|
|
32
|
+
"full" 1 take a full step of size one
|
|
33
|
+
"min-dual-infeas" 1 choose step size minimizing new dual infeasibility
|
|
34
|
+
"safer-min-dual-infeas" 1 like "min_dual_infeas", but safeguarded by "min" and "max"
|
|
35
|
+
"primal-and-full" 1 use the primal step size, and full step if delta_x <= alpha_for_y_tol
|
|
36
|
+
"dual-and-full" 1 use the dual step size, and full step if delta_x <= alpha_for_y_tol
|
|
37
|
+
"acceptor" 1 Call LSAcceptor to get step size for y
|
|
38
|
+
alpha_for_y_tol double 0 10 0 maxdouble 1 9 Tolerance for switching to full equality multiplier steps.
|
|
39
|
+
alpha_min_frac double 0 0.05 0 1 1 9 Safety factor for the minimal step size (before switching to restoration phase).
|
|
40
|
+
alpha_red_factor double 0 0.5 0 1 1 9 Fractional reduction of the trial step size in the backtracking line search.
|
|
41
|
+
barrier_tol_factor double 0 10 0 maxdouble 1 8 Factor for mu in barrier stop test.
|
|
42
|
+
bound_frac double 0 0.01 0 0.5 1 5 Desired minimum relative distance from the initial point to bound.
|
|
43
|
+
bound_mult_init_method enumstr 0 "constant" 1 5 Initialization method for bound multipliers
|
|
44
|
+
"constant" 1 set all bound multipliers to the value of bound_mult_init_val
|
|
45
|
+
"mu-based" 1 initialize to mu_init/x_slack
|
|
46
|
+
bound_mult_init_val double 0 1 0 maxdouble 1 5 Initial value for the bound multipliers.
|
|
47
|
+
bound_mult_reset_threshold double 0 1000 0 maxdouble 1 12 Threshold for resetting bound multipliers after the restoration phase.
|
|
48
|
+
bound_push double 0 0.01 0 maxdouble 1 5 Desired minimum absolute distance from the initial point to bound.
|
|
49
|
+
bound_relax_factor double 0 1e-10 0 maxdouble 1 3 Factor for initial relaxation of the bounds.
|
|
50
|
+
check_derivatives_for_naninf enumstr 0 "no" 1 3 Indicates whether it is desired to check for Nan/Inf in derivative matrices
|
|
51
|
+
"yes" 1
|
|
52
|
+
"no" 1
|
|
53
|
+
compl_inf_tol double 0 0.0001 0 maxdouble 1 1 Desired threshold for the complementarity conditions.
|
|
54
|
+
constr_mult_init_max double 0 1000 0 maxdouble 1 5 Maximum allowed least-square guess of constraint multipliers.
|
|
55
|
+
constr_mult_reset_threshold double 0 0 0 maxdouble 1 12 Threshold for resetting equality and inequality multipliers after restoration phase.
|
|
56
|
+
constr_viol_tol double 0 1e-06 0 maxdouble 1 1 Desired threshold for the constraint and variable bound violation.
|
|
57
|
+
constraint_violation_norm_type enumstr 0 "1-norm" 1 9 Norm to be used for the constraint violation in the line search.
|
|
58
|
+
"1-norm" 1 use the 1-norm
|
|
59
|
+
"2-norm" 1 use the 2-norm
|
|
60
|
+
"max-norm" 1 use the infinity norm
|
|
61
|
+
corrector_compl_avrg_red_fact double 0 1 0 maxdouble 1 9 Complementarity tolerance factor for accepting corrector step.
|
|
62
|
+
corrector_type enumstr 0 "none" 1 9 The type of corrector steps that should be taken.
|
|
63
|
+
"none" 1 no corrector
|
|
64
|
+
"affine" 1 corrector step towards mu=0
|
|
65
|
+
"primal-dual" 1 corrector step towards current mu
|
|
66
|
+
delta double 0 1 0 maxdouble 1 9 Multiplier for constraint violation in the switching rule.
|
|
67
|
+
dependency_detection_with_rhs enumstr 0 "no" 1 3 Indicates if the right hand sides of the constraints should be considered in addition to gradients during dependency detection
|
|
68
|
+
"yes" 1
|
|
69
|
+
"no" 1
|
|
70
|
+
dependency_detector enumstr 0 "none" 1 3 Indicates which linear solver should be used to detect linearly dependent equality constraints.
|
|
71
|
+
"none" 1 don't check; no extra work at beginning
|
|
72
|
+
"mumps" 1 use MUMPS
|
|
73
|
+
diverging_iterates_tol double 0 1e+20 0 maxdouble 1 1 Threshold for maximal value of primal iterates.
|
|
74
|
+
dual_inf_tol double 0 1 0 maxdouble 1 1 Desired threshold for the dual infeasibility.
|
|
75
|
+
eta_phi double 0 1e-08 0 0.5 1 9 Relaxation factor in the Armijo condition.
|
|
76
|
+
evaluate_orig_obj_at_resto_trial enumstr 0 "yes" 1 12 Determines if the original objective function should be evaluated at restoration phase trial points.
|
|
77
|
+
"yes" 1
|
|
78
|
+
"no" 1
|
|
79
|
+
expect_infeasible_problem enumstr 0 "no" 1 12 Enable heuristics to quickly detect an infeasible problem.
|
|
80
|
+
"yes" 1
|
|
81
|
+
"no" 1
|
|
82
|
+
expect_infeasible_problem_ctol double 0 0.001 0 maxdouble 1 12 Threshold for disabling "expect_infeasible_problem" option.
|
|
83
|
+
expect_infeasible_problem_ytol double 0 1e+08 0 maxdouble 1 12 Multiplier threshold for activating "expect_infeasible_problem" option.
|
|
84
|
+
fast_step_computation enumstr 0 "no" 1 11 Indicates if the linear system should be solved quickly.
|
|
85
|
+
"yes" 1
|
|
86
|
+
"no" 1
|
|
87
|
+
filter_margin_fact double 0 1e-05 0 1 1 8 Factor determining width of margin for obj-constr-filter adaptive globalization strategy.
|
|
88
|
+
filter_max_margin double 0 1 0 maxdouble 1 8 Maximum width of margin in obj-constr-filter adaptive globalization strategy.
|
|
89
|
+
filter_reset_trigger integer 0 5 1 maxint 1 9 Number of iterations that trigger the filter reset.
|
|
90
|
+
first_hessian_perturbation double 0 0.0001 0 maxdouble 1 11 Size of first x-s perturbation tried.
|
|
91
|
+
fixed_mu_oracle enumstr 0 "average_compl" 1 8 Oracle for the barrier parameter when switching to fixed mode.
|
|
92
|
+
"probing" 1 Mehrotra's probing heuristic
|
|
93
|
+
"loqo" 1 LOQO's centrality rule
|
|
94
|
+
"quality-function" 1 minimize a quality function
|
|
95
|
+
"average_compl" 1 base on current average complementarity
|
|
96
|
+
fixed_variable_treatment enumstr 0 "make_parameter" 1 3 Determines how fixed variables should be handled.
|
|
97
|
+
"make_parameter" 1 Remove fixed variable from optimization variables
|
|
98
|
+
"make_parameter_nodual" 1 Remove fixed variable from optimization variables and do not compute bound multipliers for fixed variables
|
|
99
|
+
"make_constraint" 1 Add equality constraints fixing variables
|
|
100
|
+
"relax_bounds" 1 Relax fixing bound constraints
|
|
101
|
+
gamma_phi double 0 1e-08 0 1 1 9 Relaxation factor in the filter margin for the barrier function.
|
|
102
|
+
gamma_theta double 0 1e-05 0 1 1 9 Relaxation factor in the filter margin for the constraint violation.
|
|
103
|
+
hessian_approximation enumstr 0 "exact" 1 13 Indicates what Hessian information is to be used.
|
|
104
|
+
"exact" 1 Use second derivatives provided by the NLP.
|
|
105
|
+
"limited-memory" 1 Perform a limited-memory quasi-Newton approximation
|
|
106
|
+
hessian_approximation_space enumstr 0 "nonlinear-variables" 1 13 Indicates in which subspace the Hessian information is to be approximated.
|
|
107
|
+
"nonlinear-variables" 1 only in space of nonlinear variables.
|
|
108
|
+
"all-variables" 1 in space of all variables (without slacks)
|
|
109
|
+
honor_original_bounds enumstr 0 "no" 1 3 Indicates whether final points should be projected into original bounds.
|
|
110
|
+
"yes" 1
|
|
111
|
+
"no" 1
|
|
112
|
+
hsllib string 0 "libhsl.so" 1 10 Name of library containing HSL routines for load at runtime
|
|
113
|
+
inf_pr_output enumstr 0 "original" 1 2 Determines what value is printed in the "inf_pr" output column.
|
|
114
|
+
"internal" 1 max-norm of violation of internal equality constraints
|
|
115
|
+
"original" 1 maximal constraint violation in original NLP
|
|
116
|
+
jacobian_regularization_exponent double 0 0.25 0 maxdouble 1 11 Exponent for mu in the regularization for rank-deficient constraint Jacobians.
|
|
117
|
+
jacobian_regularization_value double 0 1e-08 0 maxdouble 1 11 Size of the regularization for rank-deficient constraint Jacobians.
|
|
118
|
+
kappa_d double 0 1e-05 0 maxdouble 1 3 Weight for linear damping term (to handle one-sided bounds).
|
|
119
|
+
kappa_sigma double 0 1e+10 0 maxdouble 1 9 Factor limiting the deviation of dual variables from primal estimates.
|
|
120
|
+
kappa_soc double 0 0.99 0 maxdouble 1 9 Factor in the sufficient reduction rule for second order correction.
|
|
121
|
+
least_square_init_duals enumstr 0 "no" 1 5 Least square initialization of all dual variables
|
|
122
|
+
"no" 1 use bound_mult_init_val and least-square equality constraint multipliers
|
|
123
|
+
"yes" 1 overwrite user-provided point with least-square estimates
|
|
124
|
+
least_square_init_primal enumstr 0 "no" 1 5 Least square initialization of the primal variables
|
|
125
|
+
"no" 1 take user-provided point
|
|
126
|
+
"yes" 1 overwrite user-provided point with least-square estimates
|
|
127
|
+
limited_memory_aug_solver enumstr 0 "sherman-morrison" 1 13 Strategy for solving the augmented system for low-rank Hessian.
|
|
128
|
+
"sherman-morrison" 1 use Sherman-Morrison formula
|
|
129
|
+
"extended" 1 use an extended augmented system
|
|
130
|
+
limited_memory_init_val double 0 1 0 maxdouble 1 13 Value for B0 in low-rank update.
|
|
131
|
+
limited_memory_init_val_max double 0 1e+08 0 maxdouble 1 13 Upper bound on value for B0 in low-rank update.
|
|
132
|
+
limited_memory_init_val_min double 0 1e-08 0 maxdouble 1 13 Lower bound on value for B0 in low-rank update.
|
|
133
|
+
limited_memory_initialization enumstr 0 "scalar1" 1 13 Initialization strategy for the limited memory quasi-Newton approximation.
|
|
134
|
+
"scalar1" 1 sigma = s^Ty/s^Ts
|
|
135
|
+
"scalar2" 1 sigma = y^Ty/s^Ty
|
|
136
|
+
"scalar3" 1 arithmetic average of scalar1 and scalar2
|
|
137
|
+
"scalar4" 1 geometric average of scalar1 and scalar2
|
|
138
|
+
"constant" 1 sigma = limited_memory_init_val
|
|
139
|
+
limited_memory_max_history integer 0 6 0 maxint 1 13 Maximum size of the history for the limited quasi-Newton Hessian approximation.
|
|
140
|
+
limited_memory_max_skipping integer 0 2 1 maxint 1 13 Threshold for successive iterations where update is skipped.
|
|
141
|
+
limited_memory_special_for_resto enumstr 0 "no" 1 13 Determines if the quasi-Newton updates should be special during the restoration phase.
|
|
142
|
+
"yes" 1
|
|
143
|
+
"no" 1
|
|
144
|
+
limited_memory_update_type enumstr 0 "bfgs" 1 13 Quasi-Newton update formula for the limited memory quasi-Newton approximation.
|
|
145
|
+
"bfgs" 1 BFGS update (with skipping)
|
|
146
|
+
"sr1" 1 SR1 (not working well)
|
|
147
|
+
line_search_method enumstr 0 "filter" 1 9 Globalization method used in backtracking line search
|
|
148
|
+
"filter" 1 Filter method
|
|
149
|
+
"cg-penalty" 1 Chen-Goldfarb penalty function
|
|
150
|
+
"penalty" 1 Standard penalty function
|
|
151
|
+
linear_scaling_on_demand enumstr 0 "yes" 1 10 Flag indicating that linear scaling is only done if it seems required.
|
|
152
|
+
"yes" 1
|
|
153
|
+
"no" 1
|
|
154
|
+
linear_solver enumstr 0 "mumps" 1 10 Linear solver used for step computations.
|
|
155
|
+
"ma27" 1 IpoptH: use the Harwell routine MA27; Ipopt: load the Harwell routine MA27 from user-provided library
|
|
156
|
+
"ma57" 1 IpoptH: use the Harwell routine MA57; Ipopt: load the Harwell routine MA57 from user-provided library
|
|
157
|
+
"ma77" 1 load the Harwell routine HSL_MA77 from user-provided library
|
|
158
|
+
"ma86" 1 IpoptH: use the Harwell routine HSL_MA86; Ipopt: load the Harwell routine HSL_MA86 from user-provided library
|
|
159
|
+
"ma97" 1 IpoptH: use the Harwell routine HSL_MA97; Ipopt: load the Harwell routine HSL_MA97 from user-provided library
|
|
160
|
+
"pardiso" 1 load the Pardiso package from pardiso-project.org from user-provided library at runtime
|
|
161
|
+
"pardisomkl" 1 use the Pardiso package from Intel MKL
|
|
162
|
+
"mumps" 1 use the Mumps package
|
|
163
|
+
linear_system_scaling enumstr 0 "none" 1 10 Method for scaling the linear system.
|
|
164
|
+
"none" 1 no scaling will be performed
|
|
165
|
+
"mc19" 1 IpoptH: use the Harwell routine MC19; Ipopt: load the Harwell routine MC19 from user-provided library
|
|
166
|
+
"slack-based" 1 use the slack values
|
|
167
|
+
ma27_ignore_singularity enumstr 0 "no" 1 14 Whether to use MA27's ability to solve a linear system even if the matrix is singular.
|
|
168
|
+
"yes" 1
|
|
169
|
+
"no" 1
|
|
170
|
+
ma27_la_init_factor double 0 5 1 maxdouble 1 14 Real workspace memory for MA27.
|
|
171
|
+
ma27_liw_init_factor double 0 5 1 maxdouble 1 14 Integer workspace memory for MA27.
|
|
172
|
+
ma27_meminc_factor double 0 2 1 maxdouble 1 14 Increment factor for workspace size for MA27.
|
|
173
|
+
ma27_pivtol double 0 1e-08 0 1 1 14 Pivot tolerance for the linear solver MA27.
|
|
174
|
+
ma27_pivtolmax double 0 0.0001 0 1 1 14 Maximum pivot tolerance for the linear solver MA27.
|
|
175
|
+
ma27_print_level integer 0 0 0 4 1 14 Debug printing level for the linear solver MA27
|
|
176
|
+
ma27_skip_inertia_check enumstr 0 "no" 1 14 Whether to always pretend that inertia is correct.
|
|
177
|
+
"yes" 1
|
|
178
|
+
"no" 1
|
|
179
|
+
ma57_automatic_scaling enumstr 0 "no" 1 15 Controls whether to enable automatic scaling in MA57
|
|
180
|
+
"yes" 1
|
|
181
|
+
"no" 1
|
|
182
|
+
ma57_block_size integer 0 16 1 maxint 1 15 Controls block size used by Level 3 BLAS in MA57BD
|
|
183
|
+
ma57_node_amalgamation integer 0 16 1 maxint 1 15 Node amalgamation parameter
|
|
184
|
+
ma57_pivot_order integer 0 5 0 5 1 15 Controls pivot order in MA57
|
|
185
|
+
ma57_pivtol double 0 1e-08 0 1 1 15 Pivot tolerance for the linear solver MA57.
|
|
186
|
+
ma57_pivtolmax double 0 0.0001 0 1 1 15 Maximum pivot tolerance for the linear solver MA57.
|
|
187
|
+
ma57_pre_alloc double 0 1.05 1 maxdouble 1 15 Safety factor for work space memory allocation for the linear solver MA57.
|
|
188
|
+
ma57_print_level integer 0 0 0 maxint 1 15 Debug printing level for the linear solver MA57
|
|
189
|
+
ma57_small_pivot_flag integer 0 0 0 1 1 15 Handling of small pivots
|
|
190
|
+
ma77_buffer_lpage integer 0 4096 1 maxint 1 16 Number of scalars per MA77 in-core buffer page in the out-of-core solver MA77
|
|
191
|
+
ma77_buffer_npage integer 0 1600 1 maxint 1 16 Number of pages that make up MA77 buffer
|
|
192
|
+
ma77_file_size integer 0 2097152 1 maxint 1 16 Target size of each temporary file for MA77, scalars per type
|
|
193
|
+
ma77_maxstore integer 0 0 0 maxint 1 16 Maximum storage size for MA77 in-core mode
|
|
194
|
+
ma77_nemin integer 0 8 1 maxint 1 16 Node Amalgamation parameter
|
|
195
|
+
ma77_order enumstr 0 "metis" 1 16 Controls type of ordering used by MA77
|
|
196
|
+
"amd" 1 Use the HSL_MC68 approximate minimum degree algorithm
|
|
197
|
+
"metis" 1 Use the MeTiS nested dissection algorithm (if available)
|
|
198
|
+
ma77_print_level integer 0 -1 minint maxint 1 16 Debug printing level for the linear solver MA77
|
|
199
|
+
ma77_small double 0 1e-20 0 maxdouble 1 16 Zero Pivot Threshold
|
|
200
|
+
ma77_static double 0 0 0 maxdouble 1 16 Static Pivoting Threshold
|
|
201
|
+
ma77_u double 0 1e-08 0 0.5 1 16 Pivoting Threshold
|
|
202
|
+
ma77_umax double 0 0.0001 0 0.5 1 16 Maximum Pivoting Threshold
|
|
203
|
+
ma86_nemin integer 0 32 1 maxint 1 17 Node Amalgamation parameter
|
|
204
|
+
ma86_order enumstr 0 "auto" 1 17 Controls type of ordering
|
|
205
|
+
"auto" 1 Try both AMD and MeTiS, pick best
|
|
206
|
+
"amd" 1 Use the HSL_MC68 approximate minimum degree algorithm
|
|
207
|
+
"metis" 1 Use the MeTiS nested dissection algorithm (if available)
|
|
208
|
+
ma86_print_level integer 0 -1 minint maxint 1 17 Debug printing level
|
|
209
|
+
ma86_scaling enumstr 0 "mc64" 1 17 Controls scaling of matrix
|
|
210
|
+
"none" 1 Do not scale the linear system matrix
|
|
211
|
+
"mc64" 1 Scale linear system matrix using MC64
|
|
212
|
+
"mc77" 1 Scale linear system matrix using MC77 [1,3,0]
|
|
213
|
+
ma86_small double 0 1e-20 0 maxdouble 1 17 Zero Pivot Threshold
|
|
214
|
+
ma86_static double 0 0 0 maxdouble 1 17 Static Pivoting Threshold
|
|
215
|
+
ma86_u double 0 1e-08 0 0.5 1 17 Pivoting Threshold
|
|
216
|
+
ma86_umax double 0 0.0001 0 0.5 1 17 Maximum Pivoting Threshold
|
|
217
|
+
ma97_nemin integer 0 8 1 maxint 1 18 Node Amalgamation parameter
|
|
218
|
+
ma97_order enumstr 0 "auto" 1 18 Controls type of ordering
|
|
219
|
+
"auto" 1 Use HSL_MA97 heuristic to guess best of AMD and METIS
|
|
220
|
+
"best" 1 Try both AMD and MeTiS, pick best
|
|
221
|
+
"amd" 1 Use the HSL_MC68 approximate minimum degree algorithm
|
|
222
|
+
"metis" 1 Use the MeTiS nested dissection algorithm
|
|
223
|
+
"matched-auto" 1 Use the HSL_MC80 matching with heuristic choice of AMD or METIS
|
|
224
|
+
"matched-metis" 1 Use the HSL_MC80 matching based ordering with METIS
|
|
225
|
+
"matched-amd" 1 Use the HSL_MC80 matching based ordering with AMD
|
|
226
|
+
ma97_print_level integer 0 -1 minint maxint 1 18 Debug printing level
|
|
227
|
+
ma97_scaling enumstr 0 "dynamic" 1 18 Specifies strategy for scaling
|
|
228
|
+
"none" 1 Do not scale the linear system matrix
|
|
229
|
+
"mc30" 1 Scale all linear system matrices using MC30
|
|
230
|
+
"mc64" 1 Scale all linear system matrices using MC64
|
|
231
|
+
"mc77" 1 Scale all linear system matrices using MC77 [1,3,0]
|
|
232
|
+
"dynamic" 1 Dynamically select scaling according to rules specified by ma97_scalingX and ma97_switchX options.
|
|
233
|
+
ma97_scaling1 enumstr 0 "mc64" 1 18 First scaling.
|
|
234
|
+
"none" 1 No scaling
|
|
235
|
+
"mc30" 1 Scale linear system matrix using MC30
|
|
236
|
+
"mc64" 1 Scale linear system matrix using MC64
|
|
237
|
+
"mc77" 1 Scale linear system matrix using MC77 [1,3,0]
|
|
238
|
+
ma97_scaling2 enumstr 0 "mc64" 1 18 Second scaling.
|
|
239
|
+
"none" 1 No scaling
|
|
240
|
+
"mc30" 1 Scale linear system matrix using MC30
|
|
241
|
+
"mc64" 1 Scale linear system matrix using MC64
|
|
242
|
+
"mc77" 1 Scale linear system matrix using MC77 [1,3,0]
|
|
243
|
+
ma97_scaling3 enumstr 0 "mc64" 1 18 Third scaling.
|
|
244
|
+
"none" 1 No scaling
|
|
245
|
+
"mc30" 1 Scale linear system matrix using MC30
|
|
246
|
+
"mc64" 1 Scale linear system matrix using MC64
|
|
247
|
+
"mc77" 1 Scale linear system matrix using MC77 [1,3,0]
|
|
248
|
+
ma97_small double 0 1e-20 0 maxdouble 1 18 Zero Pivot Threshold
|
|
249
|
+
ma97_solve_blas3 enumstr 0 "no" 1 18 Controls if blas2 or blas3 routines are used for solve
|
|
250
|
+
"no" 1 Use BLAS2 (faster, some implementations bit incompatible)
|
|
251
|
+
"yes" 1 Use BLAS3 (slower)
|
|
252
|
+
ma97_switch1 enumstr 0 "od_hd_reuse" 1 18 First switch, determine when ma97_scaling1 is enabled.
|
|
253
|
+
"never" 1 Scaling is never enabled.
|
|
254
|
+
"at_start" 1 Scaling to be used from the very start.
|
|
255
|
+
"at_start_reuse" 1 Scaling to be used on first iteration, then reused thereafter.
|
|
256
|
+
"on_demand" 1 Scaling to be used after Ipopt request improved solution (i.e. iterative refinement has failed).
|
|
257
|
+
"on_demand_reuse" 1 As on_demand, but reuse scaling from previous itr
|
|
258
|
+
"high_delay" 1 Scaling to be used after more than 0.05*n delays are present
|
|
259
|
+
"high_delay_reuse" 1 Scaling to be used only when previous itr created more that 0.05*n additional delays, otherwise reuse scaling from previous itr
|
|
260
|
+
"od_hd" 1 Combination of on_demand and high_delay
|
|
261
|
+
"od_hd_reuse" 1 Combination of on_demand_reuse and high_delay_reuse
|
|
262
|
+
ma97_switch2 enumstr 0 "never" 1 18 Second switch, determine when ma97_scaling2 is enabled.
|
|
263
|
+
"never" 1 Scaling is never enabled.
|
|
264
|
+
"at_start" 1 Scaling to be used from the very start.
|
|
265
|
+
"at_start_reuse" 1 Scaling to be used on first iteration, then reused thereafter.
|
|
266
|
+
"on_demand" 1 Scaling to be used after Ipopt request improved solution (i.e. iterative refinement has failed).
|
|
267
|
+
"on_demand_reuse" 1 As on_demand, but reuse scaling from previous itr
|
|
268
|
+
"high_delay" 1 Scaling to be used after more than 0.05*n delays are present
|
|
269
|
+
"high_delay_reuse" 1 Scaling to be used only when previous itr created more that 0.05*n additional delays, otherwise reuse scaling from previous itr
|
|
270
|
+
"od_hd" 1 Combination of on_demand and high_delay
|
|
271
|
+
"od_hd_reuse" 1 Combination of on_demand_reuse and high_delay_reuse
|
|
272
|
+
ma97_switch3 enumstr 0 "never" 1 18 Third switch, determine when ma97_scaling3 is enabled.
|
|
273
|
+
"never" 1 Scaling is never enabled.
|
|
274
|
+
"at_start" 1 Scaling to be used from the very start.
|
|
275
|
+
"at_start_reuse" 1 Scaling to be used on first iteration, then reused thereafter.
|
|
276
|
+
"on_demand" 1 Scaling to be used after Ipopt request improved solution (i.e. iterative refinement has failed).
|
|
277
|
+
"on_demand_reuse" 1 As on_demand, but reuse scaling from previous itr
|
|
278
|
+
"high_delay" 1 Scaling to be used after more than 0.05*n delays are present
|
|
279
|
+
"high_delay_reuse" 1 Scaling to be used only when previous itr created more that 0.05*n additional delays, otherwise reuse scaling from previous itr
|
|
280
|
+
"od_hd" 1 Combination of on_demand and high_delay
|
|
281
|
+
"od_hd_reuse" 1 Combination of on_demand_reuse and high_delay_reuse
|
|
282
|
+
ma97_u double 0 1e-08 0 0.5 1 18 Pivoting Threshold
|
|
283
|
+
ma97_umax double 0 0.0001 0 0.5 1 18 Maximum Pivoting Threshold
|
|
284
|
+
max_cpu_time double 0 1e+20 0 maxdouble 1 1 Maximum number of CPU seconds.
|
|
285
|
+
max_filter_resets integer 0 5 0 maxint 1 9 Maximal allowed number of filter resets
|
|
286
|
+
max_hessian_perturbation double 0 1e+20 0 maxdouble 1 11 Maximum value of regularization parameter for handling negative curvature.
|
|
287
|
+
max_iter integer 0 maxint 0 maxint 1 1 Maximum number of iterations.
|
|
288
|
+
max_refinement_steps integer 0 10 0 maxint 1 11 Maximum number of iterative refinement steps per linear system solve.
|
|
289
|
+
max_resto_iter integer 0 3000000 0 maxint 1 12 Maximum number of successive iterations in restoration phase.
|
|
290
|
+
max_soc integer 0 4 0 maxint 1 9 Maximum number of second order correction trial steps at each iteration.
|
|
291
|
+
max_soft_resto_iters integer 0 10 0 maxint 1 12 Maximum number of iterations performed successively in soft restoration phase.
|
|
292
|
+
max_wall_time double 0 1e+10 0 maxdouble 1 1 Maximum number of walltime clock seconds.
|
|
293
|
+
mehrotra_algorithm enumstr 0 "no" 1 11 Indicates whether to do Mehrotra's predictor-corrector algorithm.
|
|
294
|
+
"yes" 1
|
|
295
|
+
"no" 1
|
|
296
|
+
min_hessian_perturbation double 0 1e-20 0 maxdouble 1 11 Smallest perturbation of the Hessian block.
|
|
297
|
+
min_refinement_steps integer 0 1 0 maxint 1 11 Minimum number of iterative refinement steps per linear system solve.
|
|
298
|
+
mu_allow_fast_monotone_decrease enumstr 0 "yes" 1 8 Allow skipping of barrier problem if barrier test is already met.
|
|
299
|
+
"no" 1 Take at least one iteration per barrier problem even if the barrier test is already met for the updated barrier parameter
|
|
300
|
+
"yes" 1 Allow fast decrease of mu if barrier test it met
|
|
301
|
+
mu_init double 0 0.1 0 maxdouble 1 8 Initial value for the barrier parameter.
|
|
302
|
+
mu_linear_decrease_factor double 0 0.2 0 1 1 8 Determines linear decrease rate of barrier parameter.
|
|
303
|
+
mu_max double 0 100000 0 maxdouble 1 8 Maximum value for barrier parameter.
|
|
304
|
+
mu_max_fact double 0 1000 0 maxdouble 1 8 Factor for initialization of maximum value for barrier parameter.
|
|
305
|
+
mu_min double 0 1e-11 0 maxdouble 1 8 Minimum value for barrier parameter.
|
|
306
|
+
mu_oracle enumstr 0 "quality-function" 1 8 Oracle for a new barrier parameter in the adaptive strategy.
|
|
307
|
+
"probing" 1 Mehrotra's probing heuristic
|
|
308
|
+
"loqo" 1 LOQO's centrality rule
|
|
309
|
+
"quality-function" 1 minimize a quality function
|
|
310
|
+
mu_strategy enumstr 0 "adaptive" 1 8 Update strategy for barrier parameter.
|
|
311
|
+
"monotone" 1 use the monotone (Fiacco-McCormick) strategy
|
|
312
|
+
"adaptive" 1 use the adaptive update strategy
|
|
313
|
+
mu_superlinear_decrease_power double 0 1.5 1 2 1 8 Determines superlinear decrease rate of barrier parameter.
|
|
314
|
+
mu_target double 0 0 0 maxdouble 1 1 Desired value of complementarity.
|
|
315
|
+
mumps_dep_tol double 0 0 mindouble maxdouble 1 21 Threshold to consider a pivot at zero in detection of linearly dependent constraints with MUMPS.
|
|
316
|
+
mumps_mem_percent integer 0 1000 0 maxint 1 21 Percentage increase in the estimated working space for MUMPS.
|
|
317
|
+
mumps_permuting_scaling integer 0 7 0 7 1 21 Controls permuting and scaling in MUMPS
|
|
318
|
+
mumps_pivot_order integer 0 7 0 7 1 21 Controls pivot order in MUMPS
|
|
319
|
+
mumps_pivtol double 0 1e-06 0 1 1 21 Pivot tolerance for the linear solver MUMPS.
|
|
320
|
+
mumps_pivtolmax double 0 0.1 0 1 1 21 Maximum pivot tolerance for the linear solver MUMPS.
|
|
321
|
+
mumps_print_level integer 0 0 0 maxint 1 21 Debug printing level for the linear solver MUMPS
|
|
322
|
+
mumps_scaling integer 0 77 -2 77 1 21 Controls scaling in MUMPS
|
|
323
|
+
neg_curv_test_reg enumstr 0 "yes" 1 11 Whether to do the curvature test with the primal regularization (see Zavala and Chiang, 2014).
|
|
324
|
+
"yes" 1 use primal regularization with the inertia-free curvature test
|
|
325
|
+
"no" 1 use original IPOPT approach, in which the primal regularization is ignored
|
|
326
|
+
neg_curv_test_tol double 0 0 0 maxdouble 1 11 Tolerance for heuristic to ignore wrong inertia.
|
|
327
|
+
nlp_scaling_constr_target_gradient double 0 0 0 maxdouble 1 4 Target value for constraint function gradient size.
|
|
328
|
+
nlp_scaling_max_gradient double 0 100 0 maxdouble 1 4 Maximum gradient after NLP scaling.
|
|
329
|
+
nlp_scaling_method enumstr 0 "gradient-based" 1 4 Select the technique used for scaling the NLP.
|
|
330
|
+
"none" 1 no problem scaling will be performed
|
|
331
|
+
"gradient-based" 1 scale the problem so the maximum gradient at the starting point is nlp_scaling_max_gradient
|
|
332
|
+
"equilibration-based" 1 scale the problem so that first derivatives are of order 1 at random points (GAMS/Ipopt: requires user-provided library with HSL routine MC19)
|
|
333
|
+
nlp_scaling_min_value double 0 1e-08 0 maxdouble 1 4 Minimum value of gradient-based scaling values.
|
|
334
|
+
nlp_scaling_obj_target_gradient double 0 0 0 maxdouble 1 4 Target value for objective function gradient size.
|
|
335
|
+
nu_inc double 0 0.0001 0 maxdouble 1 9 Increment of the penalty parameter.
|
|
336
|
+
nu_init double 0 1e-06 0 maxdouble 1 9 Initial value of the penalty parameter.
|
|
337
|
+
obj_max_inc double 0 5 1 maxdouble 1 9 Determines the upper bound on the acceptable increase of barrier objective function.
|
|
338
|
+
pardiso_iter_coarse_size integer 0 5000 1 maxint 1 19 Maximum Size of Coarse Grid Matrix
|
|
339
|
+
pardiso_iter_dropping_factor double 0 0.5 0 1 1 19 dropping value for incomplete factor
|
|
340
|
+
pardiso_iter_dropping_schur double 0 0.1 0 1 1 19 dropping value for sparsify schur complement factor
|
|
341
|
+
pardiso_iter_inverse_norm_factor double 0 5e+06 1 maxdouble 1 19
|
|
342
|
+
pardiso_iter_max_levels integer 0 10 1 maxint 1 19 Maximum Size of Grid Levels
|
|
343
|
+
pardiso_iter_max_row_fill integer 0 10000000 1 maxint 1 19 max fill for each row
|
|
344
|
+
pardiso_iter_relative_tol double 0 1e-06 0 1 1 19 Relative Residual Convergence
|
|
345
|
+
pardiso_iterative enumstr 0 "no" 1 19 Switch for iterative solver in Pardiso library
|
|
346
|
+
"yes" 1
|
|
347
|
+
"no" 1
|
|
348
|
+
pardiso_matching_strategy enumstr 0 "complete+2x2" 1 19 Matching strategy to be used by Pardiso
|
|
349
|
+
"complete" 1 Match complete (IPAR(13)=1)
|
|
350
|
+
"complete+2x2" 1 Match complete+2x2 (IPAR(13)=2)
|
|
351
|
+
"constraints" 1 Match constraints (IPAR(13)=3)
|
|
352
|
+
pardiso_max_droptol_corrections integer 0 4 1 maxint 1 19 Maximal number of decreases of drop tolerance during one solve.
|
|
353
|
+
pardiso_max_iter integer 0 500 1 maxint 1 19 Maximum number of Krylov-Subspace Iteration
|
|
354
|
+
pardiso_max_iterative_refinement_steps integer 0 0 minint maxint 1 19 Limit on number of iterative refinement steps.
|
|
355
|
+
pardiso_msglvl integer 0 0 0 maxint 1 19 Pardiso message level
|
|
356
|
+
pardiso_order enumstr 0 "metis" 1 19 Controls the fill-in reduction ordering algorithm for the input matrix.
|
|
357
|
+
"amd" 1 minimum degree algorithm
|
|
358
|
+
"one" 1
|
|
359
|
+
"metis" 1 MeTiS nested dissection algorithm
|
|
360
|
+
"pmetis" 1 parallel (OpenMP) version of MeTiS nested dissection algorithm
|
|
361
|
+
"four" 1
|
|
362
|
+
"five" 1
|
|
363
|
+
pardiso_redo_symbolic_fact_only_if_inertia_wrong enumstr 0 "no" 1 19 Toggle for handling case when elements were perturbed by Pardiso.
|
|
364
|
+
"no" 1 Always redo symbolic factorization when elements were perturbed
|
|
365
|
+
"yes" 1 Only redo symbolic factorization when elements were perturbed if also the inertia was wrong
|
|
366
|
+
pardiso_repeated_perturbation_means_singular enumstr 0 "no" 1 19 Whether to assume that matrix is singular if elements were perturbed after recent symbolic factorization.
|
|
367
|
+
"yes" 1
|
|
368
|
+
"no" 1
|
|
369
|
+
pardiso_skip_inertia_check enumstr 0 "no" 1 19 Whether to pretend that inertia is correct.
|
|
370
|
+
"yes" 1
|
|
371
|
+
"no" 1
|
|
372
|
+
pardisolib string 0 "libpardiso.so" 1 10 Name of library containing Pardiso routines (from pardiso-project.org) for load at runtime
|
|
373
|
+
pardisomkl_matching_strategy enumstr 0 "complete+2x2" 1 20 Matching strategy to be used by Pardiso
|
|
374
|
+
"complete" 1 Match complete (IPAR(13)=1)
|
|
375
|
+
"complete+2x2" 1 Match complete+2x2 (IPAR(13)=2)
|
|
376
|
+
"constraints" 1 Match constraints (IPAR(13)=3)
|
|
377
|
+
pardisomkl_max_iterative_refinement_steps integer 0 1 minint maxint 1 20 Limit on number of iterative refinement steps.
|
|
378
|
+
pardisomkl_msglvl integer 0 0 0 maxint 1 20 Pardiso message level
|
|
379
|
+
pardisomkl_order enumstr 0 "metis" 1 20 Controls the fill-in reduction ordering algorithm for the input matrix.
|
|
380
|
+
"amd" 1 minimum degree algorithm
|
|
381
|
+
"one" 1 undocumented
|
|
382
|
+
"metis" 1 MeTiS nested dissection algorithm
|
|
383
|
+
"pmetis" 1 parallel (OpenMP) version of MeTiS nested dissection algorithm
|
|
384
|
+
pardisomkl_redo_symbolic_fact_only_if_inertia_wrong enumstr 0 "no" 1 20 Toggle for handling case when elements were perturbed by Pardiso.
|
|
385
|
+
"no" 1 Always redo symbolic factorization when elements were perturbed
|
|
386
|
+
"yes" 1 Only redo symbolic factorization when elements were perturbed if also the inertia was wrong
|
|
387
|
+
pardisomkl_repeated_perturbation_means_singular enumstr 0 "no" 1 20 Whether to assume that matrix is singular if elements were perturbed after recent symbolic factorization.
|
|
388
|
+
"yes" 1
|
|
389
|
+
"no" 1
|
|
390
|
+
pardisomkl_skip_inertia_check enumstr 0 "no" 1 20 Whether to pretend that inertia is correct.
|
|
391
|
+
"yes" 1
|
|
392
|
+
"no" 1
|
|
393
|
+
perturb_always_cd enumstr 0 "no" 1 11 Active permanent perturbation of constraint linearization.
|
|
394
|
+
"yes" 1
|
|
395
|
+
"no" 1
|
|
396
|
+
perturb_dec_fact double 0 0.333333 0 1 1 11 Decrease factor for x-s perturbation.
|
|
397
|
+
perturb_inc_fact double 0 8 1 maxdouble 1 11 Increase factor for x-s perturbation.
|
|
398
|
+
perturb_inc_fact_first double 0 100 1 maxdouble 1 11 Increase factor for x-s perturbation for very first perturbation.
|
|
399
|
+
print_advanced_options enumstr 0 "no" 1 2 whether to print also advanced options
|
|
400
|
+
"yes" 1
|
|
401
|
+
"no" 1
|
|
402
|
+
print_eval_error enumstr 0 "yes" 1 2 Switch to enable printing information about function evaluation errors into the GAMS listing file.
|
|
403
|
+
"no" 1
|
|
404
|
+
"yes" 1
|
|
405
|
+
print_frequency_iter integer 0 1 1 maxint 1 2 Determines at which iteration frequency the summarizing iteration output line should be printed.
|
|
406
|
+
print_frequency_time double 0 0 0 maxdouble 1 2 Determines at which time frequency the summarizing iteration output line should be printed.
|
|
407
|
+
print_info_string enumstr 0 "no" 1 2 Enables printing of additional info string at end of iteration output.
|
|
408
|
+
"yes" 1
|
|
409
|
+
"no" 1
|
|
410
|
+
print_level integer 0 5 0 12 1 2 Output verbosity level.
|
|
411
|
+
print_options_mode enumstr 0 "text" 1 2 format in which to print options documentation
|
|
412
|
+
"text" 1 Ordinary text
|
|
413
|
+
"latex" 1 LaTeX formatted
|
|
414
|
+
"doxygen" 1 Doxygen (markdown) formatted
|
|
415
|
+
print_timing_statistics enumstr 0 "no" 1 2 Switch to print timing statistics.
|
|
416
|
+
"yes" 1
|
|
417
|
+
"no" 1
|
|
418
|
+
quality_function_balancing_term enumstr 0 "none" 1 8 The balancing term included in the quality function for centrality.
|
|
419
|
+
"none" 1 no balancing term is added
|
|
420
|
+
"cubic" 1 Max(0,Max(dual_inf,primal_inf)-compl)^3
|
|
421
|
+
quality_function_centrality enumstr 0 "none" 1 8 The penalty term for centrality that is included in quality function.
|
|
422
|
+
"none" 1 no penalty term is added
|
|
423
|
+
"log" 1 complementarity * the log of the centrality measure
|
|
424
|
+
"reciprocal" 1 complementarity * the reciprocal of the centrality measure
|
|
425
|
+
"cubed-reciprocal" 1 complementarity * the reciprocal of the centrality measure cubed
|
|
426
|
+
quality_function_max_section_steps integer 0 8 0 maxint 1 8 Maximum number of search steps during direct search procedure determining the optimal centering parameter.
|
|
427
|
+
quality_function_norm_type enumstr 0 "2-norm-squared" 1 8 Norm used for components of the quality function.
|
|
428
|
+
"1-norm" 1 use the 1-norm (abs sum)
|
|
429
|
+
"2-norm-squared" 1 use the 2-norm squared (sum of squares)
|
|
430
|
+
"max-norm" 1 use the infinity norm (max)
|
|
431
|
+
"2-norm" 1 use 2-norm
|
|
432
|
+
quality_function_section_qf_tol double 0 0 0 1 1 8 Tolerance for the golden section search procedure determining the optimal centering parameter (in the function value space).
|
|
433
|
+
quality_function_section_sigma_tol double 0 0.01 0 1 1 8 Tolerance for the section search procedure determining the optimal centering parameter (in sigma space).
|
|
434
|
+
recalc_y enumstr 0 "no" 1 9 Tells the algorithm to recalculate the equality and inequality multipliers as least square estimates.
|
|
435
|
+
"no" 1 use the Newton step to update the multipliers
|
|
436
|
+
"yes" 1 use least-square multiplier estimates
|
|
437
|
+
recalc_y_feas_tol double 0 1e-06 0 maxdouble 1 9 Feasibility threshold for recomputation of multipliers.
|
|
438
|
+
replace_bounds enumstr 0 "no" 1 7 Whether all variable bounds should be replaced by inequality constraints
|
|
439
|
+
"yes" 1
|
|
440
|
+
"no" 1
|
|
441
|
+
report_mininfeas_solution enumstr 0 "no" 1 2 Switch to report intermediate solution with minimal constraint violation to GAMS if the final solution is not feasible.
|
|
442
|
+
"no" 1
|
|
443
|
+
"yes" 1
|
|
444
|
+
required_infeasibility_reduction double 0 0.9 0 1 1 12 Required reduction of infeasibility before leaving restoration phase.
|
|
445
|
+
residual_improvement_factor double 0 1 0 maxdouble 1 11 Minimal required reduction of residual test ratio in iterative refinement.
|
|
446
|
+
residual_ratio_max double 0 1e-10 0 maxdouble 1 11 Iterative refinement tolerance
|
|
447
|
+
residual_ratio_singular double 0 1e-05 0 maxdouble 1 11 Threshold for declaring linear system singular after failed iterative refinement.
|
|
448
|
+
resto_failure_feasibility_threshold double 0 0 0 maxdouble 1 12 Threshold for primal infeasibility to declare failure of restoration phase.
|
|
449
|
+
resto_penalty_parameter double 0 1000 0 maxdouble 1 12 Penalty parameter in the restoration phase objective function.
|
|
450
|
+
resto_proximity_weight double 0 1 0 maxdouble 1 12 Weighting factor for the proximity term in restoration phase objective.
|
|
451
|
+
rho double 0 0.1 0 1 1 9 Value in penalty parameter update formula.
|
|
452
|
+
s_max double 0 100 0 maxdouble 1 1 Scaling threshold for the NLP error.
|
|
453
|
+
s_phi double 0 2.3 1 maxdouble 1 9 Exponent for linear barrier function model in the switching rule.
|
|
454
|
+
s_theta double 0 1.1 1 maxdouble 1 9 Exponent for current constraint violation in the switching rule.
|
|
455
|
+
sigma_max double 0 100 0 maxdouble 1 8 Maximum value of the centering parameter.
|
|
456
|
+
sigma_min double 0 1e-06 0 maxdouble 1 8 Minimum value of the centering parameter.
|
|
457
|
+
skip_corr_if_neg_curv enumstr 0 "yes" 1 9 Whether to skip the corrector step in negative curvature iteration.
|
|
458
|
+
"yes" 1
|
|
459
|
+
"no" 1
|
|
460
|
+
skip_corr_in_monotone_mode enumstr 0 "yes" 1 9 Whether to skip the corrector step during monotone barrier parameter mode.
|
|
461
|
+
"yes" 1
|
|
462
|
+
"no" 1
|
|
463
|
+
slack_bound_frac double 0 0.01 0 0.5 1 5 Desired minimum relative distance from the initial slack to bound.
|
|
464
|
+
slack_bound_push double 0 0.01 0 maxdouble 1 5 Desired minimum absolute distance from the initial slack to bound.
|
|
465
|
+
slack_move double 0 1.81899e-12 0 maxdouble 1 9 Correction size for very small slacks.
|
|
466
|
+
soc_method integer 0 0 0 1 1 9 Ways to apply second order correction
|
|
467
|
+
soft_resto_pderror_reduction_factor double 0 0.9999 0 maxdouble 1 12 Required reduction in primal-dual error in the soft restoration phase.
|
|
468
|
+
start_with_resto enumstr 0 "no" 1 12 Whether to switch to restoration phase in first iteration.
|
|
469
|
+
"yes" 1
|
|
470
|
+
"no" 1
|
|
471
|
+
tau_min double 0 0.99 0 1 1 8 Lower bound on fraction-to-the-boundary parameter tau.
|
|
472
|
+
theta_max_fact double 0 10000 0 maxdouble 1 9 Determines upper bound for constraint violation in the filter.
|
|
473
|
+
theta_min_fact double 0 0.0001 0 maxdouble 1 9 Determines constraint violation threshold in the switching rule.
|
|
474
|
+
timing_statistics enumstr 0 "no" 1 7 Indicates whether to measure time spend in components of Ipopt and NLP evaluation
|
|
475
|
+
"yes" 1
|
|
476
|
+
"no" 1
|
|
477
|
+
tiny_step_tol double 0 2.22045e-15 0 maxdouble 1 9 Tolerance for detecting numerically insignificant steps.
|
|
478
|
+
tiny_step_y_tol double 0 0.01 0 maxdouble 1 9 Tolerance for quitting because of numerically insignificant steps.
|
|
479
|
+
tol double 0 1e-08 0 maxdouble 1 1 Desired convergence tolerance (relative).
|
|
480
|
+
warm_start_bound_frac double 0 0.001 0 0.5 1 6 same as bound_frac for the regular initializer
|
|
481
|
+
warm_start_bound_push double 0 0.001 0 maxdouble 1 6 same as bound_push for the regular initializer
|
|
482
|
+
warm_start_init_point enumstr 0 "no" 1 6 Warm-start for initial point
|
|
483
|
+
"no" 1 do not use the warm start initialization
|
|
484
|
+
"yes" 1 use the warm start initialization
|
|
485
|
+
warm_start_mult_bound_push double 0 0.001 0 maxdouble 1 6 same as mult_bound_push for the regular initializer
|
|
486
|
+
warm_start_mult_init_max double 0 1e+06 mindouble maxdouble 1 6 Maximum initial value for the equality multipliers.
|
|
487
|
+
warm_start_slack_bound_frac double 0 0.001 0 0.5 1 6 same as slack_bound_frac for the regular initializer
|
|
488
|
+
warm_start_slack_bound_push double 0 0.001 0 maxdouble 1 6 same as slack_bound_push for the regular initializer
|
|
489
|
+
warm_start_target_mu double 0 0 mindouble maxdouble 1 6
|
|
490
|
+
watchdog_shortened_iter_trigger integer 0 10 0 maxint 1 9 Number of shortened iterations that trigger the watchdog.
|
|
491
|
+
watchdog_trial_iter_max integer 0 3 1 maxint 1 9 Maximum number of watchdog iterations.
|
|
492
|
+
*
|
|
493
|
+
* indicator section
|
|
494
|
+
*
|
|
495
|
+
myeolchar EOLCOMM #
|
|
496
|
+
indicator SEPARATOR " "
|
|
497
|
+
indicator STRINGQUOTE
|
|
498
|
+
*
|
|
499
|
+
* Groups
|
|
500
|
+
*
|
|
501
|
+
gr_Termination group 1 1 Termination
|
|
502
|
+
gr_Output group 2 1 Output
|
|
503
|
+
gr_NLP group 3 1 NLP
|
|
504
|
+
gr_NLP_Scaling group 4 1 NLP Scaling
|
|
505
|
+
gr_Initialization group 5 1 Initialization
|
|
506
|
+
gr_Warm_Start group 6 1 Warm Start
|
|
507
|
+
gr_Miscellaneous group 7 1 Miscellaneous
|
|
508
|
+
gr_Barrier_Parameter_Update group 8 1 Barrier Parameter Update
|
|
509
|
+
gr_Line_Search group 9 1 Line Search
|
|
510
|
+
gr_Linear_Solver group 10 1 Linear Solver
|
|
511
|
+
gr_Step_Calculation group 11 1 Step Calculation
|
|
512
|
+
gr_Restoration_Phase group 12 1 Restoration Phase
|
|
513
|
+
gr_Hessian_Approximation group 13 1 Hessian Approximation
|
|
514
|
+
gr_MA27_Linear_Solver group 14 1 MA27 Linear Solver
|
|
515
|
+
gr_MA57_Linear_Solver group 15 1 MA57 Linear Solver
|
|
516
|
+
gr_MA77_Linear_Solver group 16 1 MA77 Linear Solver
|
|
517
|
+
gr_MA86_Linear_Solver group 17 1 MA86 Linear Solver
|
|
518
|
+
gr_MA97_Linear_Solver group 18 1 MA97 Linear Solver
|
|
519
|
+
gr_Pardiso__pardiso_project_org__Linear_Solver group 19 1 Pardiso (pardiso-project.org) Linear Solver
|
|
520
|
+
gr_Pardiso__MKL__Linear_Solver group 20 1 Pardiso (MKL) Linear Solver
|
|
521
|
+
gr_Mumps_Linear_Solver group 21 1 Mumps Linear Solver
|
gamspy_ipopt/version.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '52.3.0'
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
gamspy_ipopt/__init__.py,sha256=EVuF3K73BCh39CpR5Cf1O9hd13n4PSgAzd7aYMYLC00,415
|
|
2
|
+
gamspy_ipopt/libiomp5.so,sha256=lXQVJvSD5a6PvFbIc2_qJkW2kQ8BNiTa76C3Lft_YGc,2800576
|
|
3
|
+
gamspy_ipopt/libipocclib64.so,sha256=t8Ks_WFwlcWno_ObjTMFbI-j-8IDJtpxklGzeuLdf9E,248512
|
|
4
|
+
gamspy_ipopt/libipopt.so,sha256=KG6W8pVYGL3sU7VexwChG_vGlmDVLBETsQw-yOJ235k,5712376
|
|
5
|
+
gamspy_ipopt/libmkl_gams.so,sha256=xMxIG7veskOBTyC39qIzDfoOS2Vn1FS8IKrRKxDv0e4,87450744
|
|
6
|
+
gamspy_ipopt/optipopt.def,sha256=cX7OLY5Z_SheXSW-oQJG3sy92QMnxvQl4Ykbgf_ZLAU,37751
|
|
7
|
+
gamspy_ipopt/version.py,sha256=IL5pezJmCjGpwq_6ZK51hRFtq6AqiesIp9dklBfT92s,22
|
|
8
|
+
gamspy_ipopt-52.3.0.dist-info/METADATA,sha256=FKkh7kVxkAzcCUlPjXpVTbeli0Mw-w3wTs73BtlkCGE,57
|
|
9
|
+
gamspy_ipopt-52.3.0.dist-info/WHEEL,sha256=y8u8XMRMhRO4WIzZsJlf1QLnkoycGOkSMhsygOvn-QU,115
|
|
10
|
+
gamspy_ipopt-52.3.0.dist-info/top_level.txt,sha256=r-FkmkcMikWQDNxXxEZdqWncMVJr2SF17xnynaLJvtk,13
|
|
11
|
+
gamspy_ipopt-52.3.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gamspy_ipopt
|