Ipopt Documentation  
 
Loading...
Searching...
No Matches
Ipopt Options

Ipopt has many (maybe too many) options that can be adjusted for the algorithm.

Options are all identified by a string name, and their values can be of one of three types: Number (real), Integer, or String. Number options are used for things like tolerances, integer options are used for things like maximum number of iterations, and string options are used for setting algorithm details, like the NLP scaling method. Options can be set through the code that interfaces Ipopt (have a look at the examples to see how this is done) or by creating a ipopt.opt file in the directory you are executing Ipopt.

The ipopt.opt file is read line by line and each line should contain the option name, followed by whitespace, and then the value. Comments can be included with the # symbol. For example,

# This is a comment

# Turn off the NLP scaling
nlp_scaling_method none

# Change the initial barrier parameter
mu_init 1e-2

# Set the max number of iterations
max_iter 500

is a valid ipopt.opt file.

Options in the AMPL Interface

To set options through AMPL, use the internal AMPL command options. For example,

options ipopt_options "nlp_scaling_method=none mu_init=1e-2 max_iter=500"

is a valid options command in AMPL. Further, you can always create ipopt.opt. Note, the ipopt.opt file is given preference when setting options. This way, you can easily override any options set in a particular executable or AMPL model by specifying new values in ipopt.opt.

All Ipopt options are also available through AMPL. In addition, these options are available:

Option Description
halt_on_ampl_error Exit with message on evaluation error
wantsol solution report without -AMPL: sum of; 1 => write .sol file; 2 => print primal variable values; 4 => print dual variable values; 8 => do not print solution message
maxit Synonym for max_iter
outlev Synonym for print_level

Running the AMPL solver executable with the "-=" flag from the command prompt prints a list of all options available in AMPL.

Options Reference

A list of documented options is given next. Options that should be modified by expert users only are marked as advanced. You can print the documentation for all Ipopt options to the console by using the option print_options_documentation and running Ipopt. If you have the AMPL solver executable, you can generate this list also by calling the executable with flag --print-options.

Note
Availability or default values of some options concerning the linear solver depends on the configuration used to build Ipopt. Use the print options documentation feature to see which options are available in a particular build of Ipopt.

The implementation paper mentioned for some options is [12].

Termination

▸ tol: Desired convergence tolerance (relative).

Determines the convergence tolerance for the algorithm. The algorithm terminates successfully, if the (scaled) NLP error becomes smaller than this value, and if the (absolute) criteria according to "dual_inf_tol", "constr_viol_tol", and "compl_inf_tol" are met. This is epsilon_tol in Eqn. (6) in implementation paper. See also "acceptable_tol" as a second termination criterion. Note, some other algorithmic features also use this quantity to determine thresholds etc. The valid range for this real option is 0 < tol and its default value is 10-08.

▸ s_max (advanced): Scaling threshold for the NLP error.

See paragraph after Eqn. (6) in the implementation paper. The valid range for this real option is 0 < s_max and its default value is 100.

▸ max_iter: Maximum number of iterations.

The algorithm terminates with a message if the number of iterations exceeded this number. The valid range for this integer option is 0 ≤ max_iter and its default value is 3000.

▸ max_wall_time: Maximum number of walltime clock seconds.

A limit on walltime clock seconds that Ipopt can use to solve one problem. If during the convergence check this limit is exceeded, Ipopt will terminate with a corresponding message. The valid range for this real option is 0 < max_wall_time and its default value is 10+20.

▸ max_cpu_time: Maximum number of CPU seconds.

A limit on CPU seconds that Ipopt can use to solve one problem. If during the convergence check this limit is exceeded, Ipopt will terminate with a corresponding message. The valid range for this real option is 0 < max_cpu_time and its default value is 10+20.

▸ dual_inf_tol: Desired threshold for the dual infeasibility.

Absolute tolerance on the dual infeasibility. Successful termination requires that the max-norm of the (unscaled) dual infeasibility is less than this threshold. The valid range for this real option is 0 < dual_inf_tol and its default value is 1.

▸ constr_viol_tol: Desired threshold for the constraint and variable bound violation.

Absolute tolerance on the constraint and variable bound violation. Successful termination requires that the max-norm of the (unscaled) constraint violation is less than this threshold. If option bound_relax_factor is not zero 0, then Ipopt relaxes given variable bounds. The value of constr_viol_tol is used to restrict the absolute amount of this bound relaxation. The valid range for this real option is 0 < constr_viol_tol and its default value is 0.0001.

▸ compl_inf_tol: Desired threshold for the complementarity conditions.

Absolute tolerance on the complementarity. Successful termination requires that the max-norm of the (unscaled) complementarity is less than this threshold. The valid range for this real option is 0 < compl_inf_tol and its default value is 0.0001.

▸ acceptable_tol: "Acceptable" convergence tolerance (relative).

Determines which (scaled) overall optimality error is considered to be "acceptable". There are two levels of termination criteria. If the usual "desired" tolerances (see tol, dual_inf_tol etc) are satisfied at an iteration, the algorithm immediately terminates with a success message. On the other hand, if the algorithm encounters "acceptable_iter" many iterations in a row that are considered "acceptable", it will terminate before the desired convergence tolerance is met. This is useful in cases where the algorithm might not be able to achieve the "desired" level of accuracy. The valid range for this real option is 0 < acceptable_tol and its default value is 10-06.

▸ acceptable_iter: Number of "acceptable" iterates before triggering termination.

If the algorithm encounters this many successive "acceptable" iterates (see "acceptable_tol"), it terminates, assuming that the problem has been solved to best possible accuracy given round-off. If it is set to zero, this heuristic is disabled. The valid range for this integer option is 0 ≤ acceptable_iter and its default value is 15.

▸ acceptable_dual_inf_tol: "Acceptance" threshold for the dual infeasibility.

Absolute tolerance on the dual infeasibility. "Acceptable" termination requires that the (max-norm of the unscaled) dual infeasibility is less than this threshold; see also acceptable_tol. The valid range for this real option is 0 < acceptable_dual_inf_tol and its default value is 10+10.

▸ acceptable_constr_viol_tol: "Acceptance" threshold for the constraint violation.

Absolute tolerance on the constraint violation. "Acceptable" termination requires that the max-norm of the (unscaled) constraint violation is less than this threshold; see also acceptable_tol. The valid range for this real option is 0 < acceptable_constr_viol_tol and its default value is 0.01.

▸ acceptable_compl_inf_tol: "Acceptance" threshold for the complementarity conditions.

Absolute tolerance on the complementarity. "Acceptable" termination requires that the max-norm of the (unscaled) complementarity is less than this threshold; see also acceptable_tol. The valid range for this real option is 0 < acceptable_compl_inf_tol and its default value is 0.01.

▸ acceptable_obj_change_tol: "Acceptance" stopping criterion based on objective function change.

If the relative change of the objective function (scaled by Max(1,|f(x)|)) is less than this value, this part of the acceptable tolerance termination is satisfied; see also acceptable_tol. This is useful for the quasi-Newton option, which has trouble to bring down the dual infeasibility. The valid range for this real option is 0 ≤ acceptable_obj_change_tol and its default value is 10+20.

▸ diverging_iterates_tol: Threshold for maximal value of primal iterates.

If any component of the primal iterates exceeded this value (in absolute terms), the optimization is aborted with the exit message that the iterates seem to be diverging. The valid range for this real option is 0 < diverging_iterates_tol and its default value is 10+20.

▸ mu_target: Desired value of complementarity.

Usually, the barrier parameter is driven to zero and the termination test for complementarity is measured with respect to zero complementarity. However, in some cases it might be desired to have Ipopt solve barrier problem for strictly positive value of the barrier parameter. In this case, the value of "mu_target" specifies the final value of the barrier parameter, and the termination tests are then defined with respect to the barrier problem for this value of the barrier parameter. The valid range for this real option is 0 ≤ mu_target and its default value is 0.

Output

▸ print_level: Output verbosity level.

Sets the default verbosity level for console output. The larger this value the more detailed is the output. The valid range for this integer option is 0 ≤ print_level ≤ 12 and its default value is 5.

▸ output_file: File name of desired output file (leave unset for no file output).

NOTE: This option only works when read from the ipopt.opt options file! An output file with this name will be written (leave unset for no file output). The verbosity level is by default set to "print_level", but can be overridden with "file_print_level". The file name is changed to use only small letters. The default value for this string option is "".

Possible values:

  • *: Any acceptable standard file name

▸ file_print_level: Verbosity level for output file.

NOTE: This option only works when read from the ipopt.opt options file! Determines the verbosity level for the file specified by "output_file". By default it is the same as "print_level". The valid range for this integer option is 0 ≤ file_print_level ≤ 12 and its default value is 5.

▸ file_append: Whether to append to output file, if set, instead of truncating.

NOTE: This option only works when read from the ipopt.opt options file! The default value for this string option is "no".

Possible values: yes, no

▸ print_user_options: Print all options set by the user.

If selected, the algorithm will print the list of all options set by the user including their values and whether they have been used. In some cases this information might be incorrect, due to the internal program flow. The default value for this string option is "no".

Possible values: yes, no

▸ print_options_documentation: Switch to print all algorithmic options with some documentation before solving the optimization problem.

The default value for this string option is "no".

Possible values: yes, no

▸ print_timing_statistics: Switch to print timing statistics.

If selected, the program will print the time spend for selected tasks. This implies timing_statistics=yes. The default value for this string option is "no".

Possible values: yes, no

▸ print_options_mode: format in which to print options documentation

The default value for this string option is "text".

Possible values:

  • text: Ordinary text
  • latex: LaTeX formatted
  • doxygen: Doxygen (markdown) formatted

▸ print_advanced_options (advanced): whether to print also advanced options

The default value for this string option is "no".

Possible values: yes, no

▸ print_info_string: Enables printing of additional info string at end of iteration output.

This string contains some insider information about the current iteration. For details, look for "Diagnostic Tags" in the Ipopt documentation. The default value for this string option is "no".

Possible values: yes, no

▸ inf_pr_output: Determines what value is printed in the "inf_pr" output column.

Ipopt works with a reformulation of the original problem, where slacks are introduced and the problem might have been scaled. The choice "internal" prints out the constraint violation of this formulation. With "original" the true constraint violation in the original NLP is printed. The default value for this string option is "original".

Possible values:

  • internal: max-norm of violation of internal equality constraints
  • original: maximal constraint violation in original NLP

▸ print_frequency_iter: Determines at which iteration frequency the summarizing iteration output line should be printed.

Summarizing iteration output is printed every print_frequency_iter iterations, if at least print_frequency_time seconds have passed since last output. The valid range for this integer option is 1 ≤ print_frequency_iter and its default value is 1.

▸ print_frequency_time: Determines at which time frequency the summarizing iteration output line should be printed.

Summarizing iteration output is printed if at least print_frequency_time seconds have passed since last output and the iteration number is a multiple of print_frequency_iter. The valid range for this real option is 0 ≤ print_frequency_time and its default value is 0.

NLP

▸ nlp_lower_bound_inf: any bound less or equal this value will be considered -inf (i.e. not lower bounded).

The valid range for this real option is unrestricted and its default value is -10+19.

▸ nlp_upper_bound_inf: any bound greater or this value will be considered +inf (i.e. not upper bounded).

The valid range for this real option is unrestricted and its default value is 10+19.

▸ fixed_variable_treatment: Determines how fixed variables should be handled.

The main difference between those options is that the starting point in the "make_constraint" case still has the fixed variables at their given values, whereas in the case "make_parameter(_nodual)" the functions are always evaluated with the fixed values for those variables. Also, for "relax_bounds", the fixing bound constraints are relaxed (according to" bound_relax_factor"). For all but "make_parameter_nodual", bound multipliers are computed for the fixed variables. The default value for this string option is "make_parameter".

Possible values:

  • make_parameter: Remove fixed variable from optimization variables
  • make_parameter_nodual: Remove fixed variable from optimization variables and do not compute bound multipliers for fixed variables
  • make_constraint: Add equality constraints fixing variables
  • relax_bounds: Relax fixing bound constraints

▸ dependency_detector (advanced): Indicates which linear solver should be used to detect linearly dependent equality constraints.

This is experimental and does not work well. The default value for this string option is "none".

Possible values:

  • none: don't check; no extra work at beginning
  • mumps: use MUMPS
  • wsmp: use WSMP
  • ma28: use MA28

▸ dependency_detection_with_rhs (advanced): Indicates if the right hand sides of the constraints should be considered in addition to gradients during dependency detection

The default value for this string option is "no".

Possible values: yes, no

▸ num_linear_variables (advanced): Number of linear variables

When the Hessian is approximated, it is assumed that the first num_linear_variables variables are linear. The Hessian is then not approximated in this space. If the get_number_of_nonlinear_variables method in the TNLP is implemented, this option is ignored. The valid range for this integer option is 0 ≤ num_linear_variables and its default value is 0.

▸ jacobian_approximation (advanced): Specifies technique to compute constraint Jacobian

The default value for this string option is "exact".

Possible values:

  • exact: user-provided derivatives
  • finite-difference-values: user-provided structure, values by finite differences

▸ gradient_approximation (advanced): Specifies technique to compute objective Gradient

The default value for this string option is "exact".

Possible values:

  • exact: user-provided gradient
  • finite-difference-values: values by finite differences

▸ findiff_perturbation (advanced): Size of the finite difference perturbation for derivative approximation.

This determines the relative perturbation of the variable entries. The valid range for this real option is 0 < findiff_perturbation and its default value is 10-07.

▸ kappa_d (advanced): Weight for linear damping term (to handle one-sided bounds).

See Section 3.7 in implementation paper. The valid range for this real option is 0 ≤ kappa_d and its default value is 10-05.

▸ bound_relax_factor: Factor for initial relaxation of the bounds.

Before start of the optimization, the bounds given by the user are relaxed. This option sets the factor for this relaxation. Additional, the constraint violation tolerance constr_viol_tol is used to bound the relaxation by an absolute value. If it is set to zero, then then bounds relaxation is disabled. See Eqn.(35) in implementation paper. Note that the constraint violation reported by Ipopt at the end of the solution process does not include violations of the original (non-relaxed) variable bounds. See also option honor_original_bounds. The valid range for this real option is 0 ≤ bound_relax_factor and its default value is 10-08.

▸ honor_original_bounds: Indicates whether final points should be projected into original bounds.

Ipopt might relax the bounds during the optimization (see, e.g., option "bound_relax_factor"). This option determines whether the final point should be projected back into the user-provide original bounds after the optimization. Note that violations of constraints and complementarity reported by Ipopt at the end of the solution process are for the non-projected point. The default value for this string option is "no".

Possible values: yes, no

▸ check_derivatives_for_naninf: Indicates whether it is desired to check for Nan/Inf in derivative matrices

Activating this option will cause an error if an invalid number is detected in the constraint Jacobians or the Lagrangian Hessian. If this is not activated, the test is skipped, and the algorithm might proceed with invalid numbers and fail. If test is activated and an invalid number is detected, the matrix is written to output with print_level corresponding to J_MOREDETAILED (7); so beware of large output! The default value for this string option is "no".

Possible values: yes, no

▸ grad_f_constant: Indicates whether to assume that the objective function is linear

Activating this option will cause Ipopt to ask for the Gradient of the objective function only once from the NLP and reuse this information later. The default value for this string option is "no".

Possible values: yes, no

▸ jac_c_constant: Indicates whether to assume that all equality constraints are linear

Activating this option will cause Ipopt to ask for the Jacobian of the equality constraints only once from the NLP and reuse this information later. The default value for this string option is "no".

Possible values: yes, no

▸ jac_d_constant: Indicates whether to assume that all inequality constraints are linear

Activating this option will cause Ipopt to ask for the Jacobian of the inequality constraints only once from the NLP and reuse this information later. The default value for this string option is "no".

Possible values: yes, no

▸ hessian_constant: Indicates whether to assume the problem is a QP (quadratic objective, linear constraints)

Activating this option will cause Ipopt to ask for the Hessian of the Lagrangian function only once from the NLP and reuse this information later. The default value for this string option is "no".

Possible values: yes, no

NLP Scaling

▸ nlp_scaling_method: Select the technique used for scaling the NLP.

Selects the technique used for scaling the problem internally before it is solved. For user-scaling, the parameters come from the NLP. If you are using AMPL, they can be specified through suffixes ("scaling_factor") The default value for this string option is "gradient-based".

Possible values:

  • none: no problem scaling will be performed
  • user-scaling: scaling parameters will come from the user
  • gradient-based: scale the problem so the maximum gradient at the starting point is nlp_scaling_max_gradient
  • equilibration-based: scale the problem so that first derivatives are of order 1 at random points (uses Harwell routine MC19)

▸ obj_scaling_factor: Scaling factor for the objective function.

This option sets a scaling factor for the objective function. The scaling is seen internally by Ipopt but the unscaled objective is reported in the console output. If additional scaling parameters are computed (e.g. user-scaling or gradient-based), both factors are multiplied. If this value is chosen to be negative, Ipopt will maximize the objective function instead of minimizing it. The valid range for this real option is unrestricted and its default value is 1.

▸ nlp_scaling_max_gradient: Maximum gradient after NLP scaling.

This is the gradient scaling cut-off. If the maximum gradient is above this value, then gradient based scaling will be performed. Scaling parameters are calculated to scale the maximum gradient back to this value. (This is g_max in Section 3.8 of the implementation paper.) Note: This option is only used if "nlp_scaling_method" is chosen as "gradient-based". The valid range for this real option is 0 < nlp_scaling_max_gradient and its default value is 100.

▸ nlp_scaling_obj_target_gradient (advanced): Target value for objective function gradient size.

If a positive number is chosen, the scaling factor for the objective function is computed so that the gradient has the max norm of the given size at the starting point. This overrides nlp_scaling_max_gradient for the objective function. The valid range for this real option is 0 ≤ nlp_scaling_obj_target_gradient and its default value is 0.

▸ nlp_scaling_constr_target_gradient (advanced): Target value for constraint function gradient size.

If a positive number is chosen, the scaling factors for the constraint functions are computed so that the gradient has the max norm of the given size at the starting point. This overrides nlp_scaling_max_gradient for the constraint functions. The valid range for this real option is 0 ≤ nlp_scaling_constr_target_gradient and its default value is 0.

▸ nlp_scaling_min_value: Minimum value of gradient-based scaling values.

This is the lower bound for the scaling factors computed by gradient-based scaling method. If some derivatives of some functions are huge, the scaling factors will otherwise become very small, and the (unscaled) final constraint violation, for example, might then be significant. Note: This option is only used if "nlp_scaling_method" is chosen as "gradient-based". The valid range for this real option is 0 ≤ nlp_scaling_min_value and its default value is 10-08.

Initialization

▸ bound_push: Desired minimum absolute distance from the initial point to bound.

Determines how much the initial point might have to be modified in order to be sufficiently inside the bounds (together with "bound_frac"). (This is kappa_1 in Section 3.6 of implementation paper.) The valid range for this real option is 0 < bound_push and its default value is 0.01.

▸ bound_frac: Desired minimum relative distance from the initial point to bound.

Determines how much the initial point might have to be modified in order to be sufficiently inside the bounds (together with "bound_push"). (This is kappa_2 in Section 3.6 of implementation paper.) The valid range for this real option is 0 < bound_frac ≤ 0.5 and its default value is 0.01.

▸ slack_bound_push: Desired minimum absolute distance from the initial slack to bound.

Determines how much the initial slack variables might have to be modified in order to be sufficiently inside the inequality bounds (together with "slack_bound_frac"). (This is kappa_1 in Section 3.6 of implementation paper.) The valid range for this real option is 0 < slack_bound_push and its default value is 0.01.

▸ slack_bound_frac: Desired minimum relative distance from the initial slack to bound.

Determines how much the initial slack variables might have to be modified in order to be sufficiently inside the inequality bounds (together with "slack_bound_push"). (This is kappa_2 in Section 3.6 of implementation paper.) The valid range for this real option is 0 < slack_bound_frac ≤ 0.5 and its default value is 0.01.

▸ constr_mult_init_max: Maximum allowed least-square guess of constraint multipliers.

Determines how large the initial least-square guesses of the constraint multipliers are allowed to be (in max-norm). If the guess is larger than this value, it is discarded and all constraint multipliers are set to zero. This options is also used when initializing the restoration phase. By default, "resto.constr_mult_init_max" (the one used in RestoIterateInitializer) is set to zero. The valid range for this real option is 0 ≤ constr_mult_init_max and its default value is 1000.

▸ bound_mult_init_val: Initial value for the bound multipliers.

All dual variables corresponding to bound constraints are initialized to this value. The valid range for this real option is 0 < bound_mult_init_val and its default value is 1.

▸ bound_mult_init_method: Initialization method for bound multipliers

This option defines how the iterates for the bound multipliers are initialized. If "constant" is chosen, then all bound multipliers are initialized to the value of "bound_mult_init_val". If "mu-based" is chosen, then each value is initialized to the the value of "mu_init" divided by the corresponding slack variable. This latter option might be useful if the starting point is close to the optimal solution. The default value for this string option is "constant".

Possible values:

  • constant: set all bound multipliers to the value of bound_mult_init_val
  • mu-based: initialize to mu_init/x_slack

▸ least_square_init_primal: Least square initialization of the primal variables

If set to yes, Ipopt ignores the user provided point and solves a least square problem for the primal variables (x and s) to fit the linearized equality and inequality constraints.This might be useful if the user doesn't know anything about the starting point, or for solving an LP or QP. The default value for this string option is "no".

Possible values:

  • no: take user-provided point
  • yes: overwrite user-provided point with least-square estimates

▸ least_square_init_duals: Least square initialization of all dual variables

If set to yes, Ipopt tries to compute least-square multipliers (considering ALL dual variables). If successful, the bound multipliers are possibly corrected to be at least bound_mult_init_val. This might be useful if the user doesn't know anything about the starting point, or for solving an LP or QP. This overwrites option "bound_mult_init_method". The default value for this string option is "no".

Possible values:

  • no: use bound_mult_init_val and least-square equality constraint multipliers
  • yes: overwrite user-provided point with least-square estimates

Warm Start

▸ warm_start_init_point: Warm-start for initial point

Indicates whether this optimization should use a warm start initialization, where values of primal and dual variables are given (e.g., from a previous optimization of a related problem.) The default value for this string option is "no".

Possible values:

  • no: do not use the warm start initialization
  • yes: use the warm start initialization

▸ warm_start_same_structure (advanced): Indicates whether a problem with a structure identical to the previous one is to be solved.

If enabled, then the algorithm assumes that an NLP is now to be solved whose structure is identical to one that already was considered (with the same NLP object). The default value for this string option is "no".

Possible values: yes, no

▸ warm_start_bound_push: same as bound_push for the regular initializer

The valid range for this real option is 0 < warm_start_bound_push and its default value is 0.001.

▸ warm_start_bound_frac: same as bound_frac for the regular initializer

The valid range for this real option is 0 < warm_start_bound_frac ≤ 0.5 and its default value is 0.001.

▸ warm_start_slack_bound_push: same as slack_bound_push for the regular initializer

The valid range for this real option is 0 < warm_start_slack_bound_push and its default value is 0.001.

▸ warm_start_slack_bound_frac: same as slack_bound_frac for the regular initializer

The valid range for this real option is 0 < warm_start_slack_bound_frac ≤ 0.5 and its default value is 0.001.

▸ warm_start_mult_bound_push: same as mult_bound_push for the regular initializer

The valid range for this real option is 0 < warm_start_mult_bound_push and its default value is 0.001.

▸ warm_start_mult_init_max: Maximum initial value for the equality multipliers.

The valid range for this real option is unrestricted and its default value is 10+06.

▸ warm_start_entire_iterate (advanced): Tells algorithm whether to use the GetWarmStartIterate method in the NLP.

The default value for this string option is "no".

Possible values:

  • no: call GetStartingPoint in the NLP
  • yes: call GetWarmStartIterate in the NLP

▸ warm_start_target_mu (advanced)

Experimental! The valid range for this real option is unrestricted and its default value is 0.

Miscellaneous

▸ option_file_name: File name of options file.

By default, the name of the Ipopt options file is "ipopt.opt" - or something else if specified in the IpoptApplication::Initialize call. If this option is set by SetStringValue BEFORE the options file is read, it specifies the name of the options file. It does not make any sense to specify this option within the options file. Setting this option to an empty string disables reading of an options file. The default value for this string option is "ipopt.opt".

Possible values:

  • *: Any acceptable standard file name

▸ replace_bounds (advanced): Whether all variable bounds should be replaced by inequality constraints

This option must be set for the inexact algorithm. The default value for this string option is "no".

Possible values: yes, no

▸ skip_finalize_solution_call (advanced): Whether a call to NLP::FinalizeSolution after optimization should be suppressed

In some Ipopt applications, the user might want to call the FinalizeSolution method separately. Setting this option to "yes" will cause the IpoptApplication object to suppress the default call to that method. The default value for this string option is "no".

Possible values: yes, no

▸ timing_statistics: Indicates whether to measure time spend in components of Ipopt and NLP evaluation

The overall algorithm time is unaffected by this option. The default value for this string option is "no".

Possible values: yes, no

Barrier Parameter Update

▸ mu_max_fact: Factor for initialization of maximum value for barrier parameter.

This option determines the upper bound on the barrier parameter. This upper bound is computed as the average complementarity at the initial point times the value of this option. (Only used if option "mu_strategy" is chosen as "adaptive".) The valid range for this real option is 0 < mu_max_fact and its default value is 1000.

▸ mu_max: Maximum value for barrier parameter.

This option specifies an upper bound on the barrier parameter in the adaptive mu selection mode. If this option is set, it overwrites the effect of mu_max_fact. (Only used if option "mu_strategy" is chosen as "adaptive".) The valid range for this real option is 0 < mu_max and its default value is 100000.

▸ mu_min: Minimum value for barrier parameter.

This option specifies the lower bound on the barrier parameter in the adaptive mu selection mode. By default, it is set to the minimum of 1e-11 and min("tol","compl_inf_tol")/("barrier_tol_factor"+1), which should be a reasonable value. (Only used if option "mu_strategy" is chosen as "adaptive".) The valid range for this real option is 0 < mu_min and its default value is 10-11.

▸ adaptive_mu_globalization: Globalization strategy for the adaptive mu selection mode.

To achieve global convergence of the adaptive version, the algorithm has to switch to the monotone mode (Fiacco-McCormick approach) when convergence does not seem to appear. This option sets the criterion used to decide when to do this switch. (Only used if option "mu_strategy" is chosen as "adaptive".) The default value for this string option is "obj-constr-filter".

Possible values:

  • kkt-error: nonmonotone decrease of kkt-error
  • obj-constr-filter: 2-dim filter for objective and constraint violation
  • never-monotone-mode: disables globalization

▸ adaptive_mu_kkterror_red_iters (advanced): Maximum number of iterations requiring sufficient progress.

For the "kkt-error" based globalization strategy, sufficient progress must be made for "adaptive_mu_kkterror_red_iters" iterations. If this number of iterations is exceeded, the globalization strategy switches to the monotone mode. The valid range for this integer option is 0 ≤ adaptive_mu_kkterror_red_iters and its default value is 4.

▸ adaptive_mu_kkterror_red_fact (advanced): Sufficient decrease factor for "kkt-error" globalization strategy.

For the "kkt-error" based globalization strategy, the error must decrease by this factor to be deemed sufficient decrease. The valid range for this real option is 0 < adaptive_mu_kkterror_red_fact < 1 and its default value is 0.9999.

▸ filter_margin_fact (advanced): Factor determining width of margin for obj-constr-filter adaptive globalization strategy.

When using the adaptive globalization strategy, "obj-constr-filter", sufficient progress for a filter entry is defined as follows: (new obj) < (filter obj) - filter_margin_fact*(new constr-viol) OR (new constr-viol) < (filter constr-viol) - filter_margin_fact*(new constr-viol). For the description of the "kkt-error-filter" option see "filter_max_margin". The valid range for this real option is 0 < filter_margin_fact < 1 and its default value is 10-05.

▸ filter_max_margin (advanced): Maximum width of margin in obj-constr-filter adaptive globalization strategy.

The valid range for this real option is 0 < filter_max_margin and its default value is 1.

▸ adaptive_mu_restore_previous_iterate (advanced): Indicates if the previous accepted iterate should be restored if the monotone mode is entered.

When the globalization strategy for the adaptive barrier algorithm switches to the monotone mode, it can either start from the most recent iterate (no), or from the last iterate that was accepted (yes). The default value for this string option is "no".

Possible values: yes, no

▸ adaptive_mu_monotone_init_factor (advanced): Determines the initial value of the barrier parameter when switching to the monotone mode.

When the globalization strategy for the adaptive barrier algorithm switches to the monotone mode and fixed_mu_oracle is chosen as "average_compl", the barrier parameter is set to the current average complementarity times the value of "adaptive_mu_monotone_init_factor". The valid range for this real option is 0 < adaptive_mu_monotone_init_factor and its default value is 0.8.

▸ adaptive_mu_kkt_norm_type (advanced): Norm used for the KKT error in the adaptive mu globalization strategies.

When computing the KKT error for the globalization strategies, the norm to be used is specified with this option. Note, this option is also used in the QualityFunctionMuOracle. The default value for this string option is "2-norm-squared".

Possible values:

  • 1-norm: use the 1-norm (abs sum)
  • 2-norm-squared: use the 2-norm squared (sum of squares)
  • max-norm: use the infinity norm (max)
  • 2-norm: use 2-norm

▸ mu_strategy: Update strategy for barrier parameter.

Determines which barrier parameter update strategy is to be used. The default value for this string option is "monotone".

Possible values:

  • monotone: use the monotone (Fiacco-McCormick) strategy
  • adaptive: use the adaptive update strategy

▸ mu_oracle: Oracle for a new barrier parameter in the adaptive strategy.

Determines how a new barrier parameter is computed in each "free-mode" iteration of the adaptive barrier parameter strategy. (Only considered if "adaptive" is selected for option "mu_strategy"). The default value for this string option is "quality-function".

Possible values:

  • probing: Mehrotra's probing heuristic
  • loqo: LOQO's centrality rule
  • quality-function: minimize a quality function

▸ fixed_mu_oracle: Oracle for the barrier parameter when switching to fixed mode.

Determines how the first value of the barrier parameter should be computed when switching to the "monotone mode" in the adaptive strategy. (Only considered if "adaptive" is selected for option "mu_strategy".) The default value for this string option is "average_compl".

Possible values:

  • probing: Mehrotra's probing heuristic
  • loqo: LOQO's centrality rule
  • quality-function: minimize a quality function
  • average_compl: base on current average complementarity

▸ mu_init: Initial value for the barrier parameter.

This option determines the initial value for the barrier parameter (mu). It is only relevant in the monotone, Fiacco-McCormick version of the algorithm. (i.e., if "mu_strategy" is chosen as "monotone") The valid range for this real option is 0 < mu_init and its default value is 0.1.

▸ barrier_tol_factor: Factor for mu in barrier stop test.

The convergence tolerance for each barrier problem in the monotone mode is the value of the barrier parameter times "barrier_tol_factor". This option is also used in the adaptive mu strategy during the monotone mode. This is kappa_epsilon in implementation paper. The valid range for this real option is 0 < barrier_tol_factor and its default value is 10.

▸ mu_linear_decrease_factor: Determines linear decrease rate of barrier parameter.

For the Fiacco-McCormick update procedure the new barrier parameter mu is obtained by taking the minimum of mu*"mu_linear_decrease_factor" and mu^"superlinear_decrease_power". This is kappa_mu in implementation paper. This option is also used in the adaptive mu strategy during the monotone mode. The valid range for this real option is 0 < mu_linear_decrease_factor < 1 and its default value is 0.2.

▸ mu_superlinear_decrease_power: Determines superlinear decrease rate of barrier parameter.

For the Fiacco-McCormick update procedure the new barrier parameter mu is obtained by taking the minimum of mu*"mu_linear_decrease_factor" and mu^"superlinear_decrease_power". This is theta_mu in implementation paper. This option is also used in the adaptive mu strategy during the monotone mode. The valid range for this real option is 1 < mu_superlinear_decrease_power < 2 and its default value is 1.5.

▸ mu_allow_fast_monotone_decrease (advanced): Allow skipping of barrier problem if barrier test is already met.

The default value for this string option is "yes".

Possible values:

  • no: Take at least one iteration per barrier problem even if the barrier test is already met for the updated barrier parameter
  • yes: Allow fast decrease of mu if barrier test it met

▸ tau_min (advanced): Lower bound on fraction-to-the-boundary parameter tau.

This is tau_min in the implementation paper. This option is also used in the adaptive mu strategy during the monotone mode. The valid range for this real option is 0 < tau_min < 1 and its default value is 0.99.

▸ sigma_max (advanced): Maximum value of the centering parameter.

This is the upper bound for the centering parameter chosen by the quality function based barrier parameter update. Only used if option "mu_oracle" is set to "quality-function". The valid range for this real option is 0 < sigma_max and its default value is 100.

▸ sigma_min (advanced): Minimum value of the centering parameter.

This is the lower bound for the centering parameter chosen by the quality function based barrier parameter update. Only used if option "mu_oracle" is set to "quality-function". The valid range for this real option is 0 ≤ sigma_min and its default value is 10-06.

▸ quality_function_norm_type (advanced): Norm used for components of the quality function.

Only used if option "mu_oracle" is set to "quality-function". The default value for this string option is "2-norm-squared".

Possible values:

  • 1-norm: use the 1-norm (abs sum)
  • 2-norm-squared: use the 2-norm squared (sum of squares)
  • max-norm: use the infinity norm (max)
  • 2-norm: use 2-norm

▸ quality_function_centrality (advanced): The penalty term for centrality that is included in quality function.

This determines whether a term is added to the quality function to penalize deviation from centrality with respect to complementarity. The complementarity measure here is the xi in the Loqo update rule. Only used if option "mu_oracle" is set to "quality-function". The default value for this string option is "none".

Possible values:

  • none: no penalty term is added
  • log: complementarity * the log of the centrality measure
  • reciprocal: complementarity * the reciprocal of the centrality measure
  • cubed-reciprocal: complementarity * the reciprocal of the centrality measure cubed

▸ quality_function_balancing_term (advanced): The balancing term included in the quality function for centrality.

This determines whether a term is added to the quality function that penalizes situations where the complementarity is much smaller than dual and primal infeasibilities. Only used if option "mu_oracle" is set to "quality-function". The default value for this string option is "none".

Possible values:

  • none: no balancing term is added
  • cubic: Max(0,Max(dual_inf,primal_inf)-compl)^3

▸ quality_function_max_section_steps: Maximum number of search steps during direct search procedure determining the optimal centering parameter.

The golden section search is performed for the quality function based mu oracle. Only used if option "mu_oracle" is set to "quality-function". The valid range for this integer option is 0 ≤ quality_function_max_section_steps and its default value is 8.

▸ quality_function_section_sigma_tol (advanced): Tolerance for the section search procedure determining the optimal centering parameter (in sigma space).

The golden section search is performed for the quality function based mu oracle. Only used if option "mu_oracle" is set to "quality-function". The valid range for this real option is 0 ≤ quality_function_section_sigma_tol < 1 and its default value is 0.01.

▸ quality_function_section_qf_tol (advanced): Tolerance for the golden section search procedure determining the optimal centering parameter (in the function value space).

The golden section search is performed for the quality function based mu oracle. Only used if option "mu_oracle" is set to "quality-function". The valid range for this real option is 0 ≤ quality_function_section_qf_tol < 1 and its default value is 0.

Line Search

▸ line_search_method (advanced): Globalization method used in backtracking line search

Only the "filter" choice is officially supported. But sometimes, good results might be obtained with the other choices. The default value for this string option is "filter".

Possible values:

  • filter: Filter method
  • cg-penalty: Chen-Goldfarb penalty function
  • penalty: Standard penalty function

▸ alpha_red_factor (advanced): Fractional reduction of the trial step size in the backtracking line search.

At every step of the backtracking line search, the trial step size is reduced by this factor. The valid range for this real option is 0 < alpha_red_factor < 1 and its default value is 0.5.

▸ accept_every_trial_step: Always accept the first trial step.

Setting this option to "yes" essentially disables the line search and makes the algorithm take aggressive steps, without global convergence guarantees. The default value for this string option is "no".

Possible values: yes, no

▸ accept_after_max_steps (advanced): Accept a trial point after maximal this number of steps even if it does not satisfy line search conditions.

Setting this to -1 disables this option. The valid range for this integer option is -1 ≤ accept_after_max_steps and its default value is -1.

▸ alpha_for_y: Method to determine the step size for constraint multipliers (alpha_y) .

The default value for this string option is "primal".

Possible values:

  • primal: use primal step size
  • bound-mult: use step size for the bound multipliers (good for LPs)
  • min: use the min of primal and bound multipliers
  • max: use the max of primal and bound multipliers
  • full: take a full step of size one
  • min-dual-infeas: choose step size minimizing new dual infeasibility
  • safer-min-dual-infeas: like "min_dual_infeas", but safeguarded by "min" and "max"
  • primal-and-full: use the primal step size, and full step if delta_x <= alpha_for_y_tol
  • dual-and-full: use the dual step size, and full step if delta_x <= alpha_for_y_tol
  • acceptor: Call LSAcceptor to get step size for y

▸ alpha_for_y_tol: Tolerance for switching to full equality multiplier steps.

This is only relevant if "alpha_for_y" is chosen "primal-and-full" or "dual-and-full". The step size for the equality constraint multipliers is taken to be one if the max-norm of the primal step is less than this tolerance. The valid range for this real option is 0 ≤ alpha_for_y_tol and its default value is 10.

▸ tiny_step_tol (advanced): Tolerance for detecting numerically insignificant steps.

If the search direction in the primal variables (x and s) is, in relative terms for each component, less than this value, the algorithm accepts the full step without line search. If this happens repeatedly, the algorithm will terminate with a corresponding exit message. The default value is 10 times machine precision. The valid range for this real option is 0 ≤ tiny_step_tol and its default value is 2.22045 · 10-15.

▸ tiny_step_y_tol (advanced): Tolerance for quitting because of numerically insignificant steps.

If the search direction in the primal variables (x and s) is, in relative terms for each component, repeatedly less than tiny_step_tol, and the step in the y variables is smaller than this threshold, the algorithm will terminate. The valid range for this real option is 0 ≤ tiny_step_y_tol and its default value is 0.01.

▸ watchdog_shortened_iter_trigger: Number of shortened iterations that trigger the watchdog.

If the number of successive iterations in which the backtracking line search did not accept the first trial point exceeds this number, the watchdog procedure is activated. Choosing "0" here disables the watchdog procedure. The valid range for this integer option is 0 ≤ watchdog_shortened_iter_trigger and its default value is 10.

▸ watchdog_trial_iter_max: Maximum number of watchdog iterations.

This option determines the number of trial iterations allowed before the watchdog procedure is aborted and the algorithm returns to the stored point. The valid range for this integer option is 1 ≤ watchdog_trial_iter_max and its default value is 3.

▸ theta_max_fact (advanced): Determines upper bound for constraint violation in the filter.

The algorithmic parameter theta_max is determined as theta_max_fact times the maximum of 1 and the constraint violation at initial point. Any point with a constraint violation larger than theta_max is unacceptable to the filter (see Eqn. (21) in the implementation paper). The valid range for this real option is 0 < theta_max_fact and its default value is 10000.

▸ theta_min_fact (advanced): Determines constraint violation threshold in the switching rule.

The algorithmic parameter theta_min is determined as theta_min_fact times the maximum of 1 and the constraint violation at initial point. The switching rule treats an iteration as an h-type iteration whenever the current constraint violation is larger than theta_min (see paragraph before Eqn. (19) in the implementation paper). The valid range for this real option is 0 < theta_min_fact and its default value is 0.0001.

▸ eta_phi (advanced): Relaxation factor in the Armijo condition.

See Eqn. (20) in the implementation paper. The valid range for this real option is 0 < eta_phi < 0.5 and its default value is 10-08.

▸ delta (advanced): Multiplier for constraint violation in the switching rule.

See Eqn. (19) in the implementation paper. The valid range for this real option is 0 < delta and its default value is 1.

▸ s_phi (advanced): Exponent for linear barrier function model in the switching rule.

See Eqn. (19) in the implementation paper. The valid range for this real option is 1 < s_phi and its default value is 2.3.

▸ s_theta (advanced): Exponent for current constraint violation in the switching rule.

See Eqn. (19) in the implementation paper. The valid range for this real option is 1 < s_theta and its default value is 1.1.

▸ gamma_phi (advanced): Relaxation factor in the filter margin for the barrier function.

See Eqn. (18a) in the implementation paper. The valid range for this real option is 0 < gamma_phi < 1 and its default value is 10-08.

▸ gamma_theta (advanced): Relaxation factor in the filter margin for the constraint violation.

See Eqn. (18b) in the implementation paper. The valid range for this real option is 0 < gamma_theta < 1 and its default value is 10-05.

▸ alpha_min_frac (advanced): Safety factor for the minimal step size (before switching to restoration phase).

This is gamma_alpha in Eqn. (23) in the implementation paper. The valid range for this real option is 0 < alpha_min_frac < 1 and its default value is 0.05.

▸ max_soc: Maximum number of second order correction trial steps at each iteration.

Choosing 0 disables the second order corrections. This is p^{max} of Step A-5.9 of Algorithm A in the implementation paper. The valid range for this integer option is 0 ≤ max_soc and its default value is 4.

▸ kappa_soc (advanced): Factor in the sufficient reduction rule for second order correction.

This option determines how much a second order correction step must reduce the constraint violation so that further correction steps are attempted. See Step A-5.9 of Algorithm A in the implementation paper. The valid range for this real option is 0 < kappa_soc and its default value is 0.99.

▸ obj_max_inc (advanced): Determines the upper bound on the acceptable increase of barrier objective function.

Trial points are rejected if they lead to an increase in the barrier objective function by more than obj_max_inc orders of magnitude. The valid range for this real option is 1 < obj_max_inc and its default value is 5.

▸ max_filter_resets (advanced): Maximal allowed number of filter resets

A positive number enables a heuristic that resets the filter, whenever in more than "filter_reset_trigger" successive iterations the last rejected trial steps size was rejected because of the filter. This option determine the maximal number of resets that are allowed to take place. The valid range for this integer option is 0 ≤ max_filter_resets and its default value is 5.

▸ filter_reset_trigger (advanced): Number of iterations that trigger the filter reset.

If the filter reset heuristic is active and the number of successive iterations in which the last rejected trial step size was rejected because of the filter, the filter is reset. The valid range for this integer option is 1 ≤ filter_reset_trigger and its default value is 5.

▸ corrector_type (advanced): The type of corrector steps that should be taken.

If "mu_strategy" is "adaptive", this option determines what kind of corrector steps should be tried. Changing this option is experimental. The default value for this string option is "none".

Possible values:

  • none: no corrector
  • affine: corrector step towards mu=0
  • primal-dual: corrector step towards current mu

▸ skip_corr_if_neg_curv (advanced): Whether to skip the corrector step in negative curvature iteration.

The corrector step is not tried if negative curvature has been encountered during the computation of the search direction in the current iteration. This option is only used if "mu_strategy" is "adaptive". Changing this option is experimental. The default value for this string option is "yes".

Possible values: yes, no

▸ skip_corr_in_monotone_mode (advanced): Whether to skip the corrector step during monotone barrier parameter mode.

The corrector step is not tried if the algorithm is currently in the monotone mode (see also option "barrier_strategy"). This option is only used if "mu_strategy" is "adaptive". Changing this option is experimental. The default value for this string option is "yes".

Possible values: yes, no

▸ corrector_compl_avrg_red_fact (advanced): Complementarity tolerance factor for accepting corrector step.

This option determines the factor by which complementarity is allowed to increase for a corrector step to be accepted. Changing this option is experimental. The valid range for this real option is 0 < corrector_compl_avrg_red_fact and its default value is 1.

▸ soc_method: Ways to apply second order correction

This option determines the way to apply second order correction, 0 is the method described in the implementation paper. 1 is the modified way which adds alpha on the rhs of x and s rows. The valid range for this integer option is 0 ≤ soc_method ≤ 1 and its default value is 0.

▸ nu_init (advanced): Initial value of the penalty parameter.

The valid range for this real option is 0 < nu_init and its default value is 10-06.

▸ nu_inc (advanced): Increment of the penalty parameter.

The valid range for this real option is 0 < nu_inc and its default value is 0.0001.

▸ rho (advanced): Value in penalty parameter update formula.

The valid range for this real option is 0 < rho < 1 and its default value is 0.1.

▸ kappa_sigma (advanced): Factor limiting the deviation of dual variables from primal estimates.

If the dual variables deviate from their primal estimates, a correction is performed. See Eqn. (16) in the implementation paper. Setting the value to less than 1 disables the correction. The valid range for this real option is 0 < kappa_sigma and its default value is 10+10.

▸ recalc_y: Tells the algorithm to recalculate the equality and inequality multipliers as least square estimates.

This asks the algorithm to recompute the multipliers, whenever the current infeasibility is less than recalc_y_feas_tol. Choosing yes might be helpful in the quasi-Newton option. However, each recalculation requires an extra factorization of the linear system. If a limited memory quasi-Newton option is chosen, this is used by default. The default value for this string option is "no".

Possible values:

  • no: use the Newton step to update the multipliers
  • yes: use least-square multiplier estimates

▸ recalc_y_feas_tol: Feasibility threshold for recomputation of multipliers.

If recalc_y is chosen and the current infeasibility is less than this value, then the multipliers are recomputed. The valid range for this real option is 0 < recalc_y_feas_tol and its default value is 10-06.

▸ slack_move (advanced): Correction size for very small slacks.

Due to numerical issues or the lack of an interior, the slack variables might become very small. If a slack becomes very small compared to machine precision, the corresponding bound is moved slightly. This parameter determines how large the move should be. Its default value is mach_eps^{3/4}. See also end of Section 3.5 in implementation paper - but actual implementation might be somewhat different. The valid range for this real option is 0 ≤ slack_move and its default value is 1.81899 · 10-12.

▸ constraint_violation_norm_type (advanced): Norm to be used for the constraint violation in the line search.

Determines which norm should be used when the algorithm computes the constraint violation in the line search. The default value for this string option is "1-norm".

Possible values:

  • 1-norm: use the 1-norm
  • 2-norm: use the 2-norm
  • max-norm: use the infinity norm

Linear Solver

▸ linear_solver: Linear solver used for step computations.

Determines which linear algebra package is to be used for the solution of the augmented linear system (for obtaining the search directions). The default value for this string option is "ma27".

Possible values:

  • ma27: use the Harwell routine MA27
  • ma57: use the Harwell routine MA57
  • ma77: use the Harwell routine HSL_MA77
  • ma86: use the Harwell routine HSL_MA86
  • ma97: use the Harwell routine HSL_MA97
  • pardiso: use the Pardiso package from pardiso-project.org
  • pardisomkl: use the Pardiso package from Intel MKL
  • spral: use the Spral package
  • wsmp: use the Wsmp package
  • mumps: use the Mumps package
  • custom: use custom linear solver (expert use)

▸ linear_system_scaling: Method for scaling the linear system.

Determines the method used to compute symmetric scaling factors for the augmented system (see also the "linear_scaling_on_demand" option). This scaling is independent of the NLP problem scaling. The default is MC19 only if MA27, MA57, MA77, or MA86 are selected as linear solvers. Otherwise it is 'none'. The default value for this string option is "mc19".

Possible values:

  • none: no scaling will be performed
  • mc19: use the Harwell routine MC19
  • slack-based: use the slack values

▸ hsllib: Name of library containing HSL routines for load at runtime

The default value for this string option is "libhsl.so" ("libhsl.dylib" on macOS, "libhsl.dll" on Windows).

Possible values:

  • *: Any acceptable filename (may contain path, too)

▸ pardisolib: Name of library containing Pardiso routines (from pardiso-project.org) for load at runtime

The default value for this string option is "/home/stefan/work/coin/libpardiso600-GNU800-X86-64.so".

Possible values:

  • *: Any acceptable filename (may contain path, too)

▸ linear_scaling_on_demand: Flag indicating that linear scaling is only done if it seems required.

This option is only important if a linear scaling method (e.g., mc19) is used. If you choose "no", then the scaling factors are computed for every linear system from the start. This can be quite expensive. Choosing "yes" means that the algorithm will start the scaling method only when the solutions to the linear system seem not good, and then use it until the end. The default value for this string option is "yes".

Possible values: yes, no

Step Calculation

▸ mehrotra_algorithm: Indicates whether to do Mehrotra's predictor-corrector algorithm.

If enabled, line search is disabled and the (unglobalized) adaptive mu strategy is chosen with the "probing" oracle, and "corrector_type=affine" is used without any safeguards; you should not set any of those options explicitly in addition. Also, unless otherwise specified, the values of "bound_push", "bound_frac", and "bound_mult_init_val" are set more aggressive, and sets "alpha_for_y=bound_mult". The Mehrotra's predictor-corrector algorithm works usually very well for LPs and convex QPs. The default value for this string option is "no".

Possible values: yes, no

▸ fast_step_computation: Indicates if the linear system should be solved quickly.

If enabled, the algorithm assumes that the linear system that is solved to obtain the search direction is solved sufficiently well. In that case, no residuals are computed to verify the solution and the computation of the search direction is a little faster. The default value for this string option is "no".

Possible values: yes, no

▸ min_refinement_steps: Minimum number of iterative refinement steps per linear system solve.

Iterative refinement (on the full unsymmetric system) is performed for each right hand side. This option determines the minimum number of iterative refinements (i.e. at least "min_refinement_steps" iterative refinement steps are enforced per right hand side.) The valid range for this integer option is 0 ≤ min_refinement_steps and its default value is 1.

▸ max_refinement_steps: Maximum number of iterative refinement steps per linear system solve.

Iterative refinement (on the full unsymmetric system) is performed for each right hand side. This option determines the maximum number of iterative refinement steps. The valid range for this integer option is 0 ≤ max_refinement_steps and its default value is 10.

▸ residual_ratio_max (advanced): Iterative refinement tolerance

Iterative refinement is performed until the residual test ratio is less than this tolerance (or until "max_refinement_steps" refinement steps are performed). The valid range for this real option is 0 < residual_ratio_max and its default value is 10-10.

▸ residual_ratio_singular (advanced): Threshold for declaring linear system singular after failed iterative refinement.

If the residual test ratio is larger than this value after failed iterative refinement, the algorithm pretends that the linear system is singular. The valid range for this real option is 0 < residual_ratio_singular and its default value is 10-05.

▸ residual_improvement_factor (advanced): Minimal required reduction of residual test ratio in iterative refinement.

If the improvement of the residual test ratio made by one iterative refinement step is not better than this factor, iterative refinement is aborted. The valid range for this real option is 0 < residual_improvement_factor and its default value is 1.

▸ neg_curv_test_tol: Tolerance for heuristic to ignore wrong inertia.

If nonzero, incorrect inertia in the augmented system is ignored, and Ipopt tests if the direction is a direction of positive curvature. This tolerance is alpha_n in the paper by Zavala and Chiang (2014) and it determines when the direction is considered to be sufficiently positive. A value in the range of [1e-12, 1e-11] is recommended. The valid range for this real option is 0 ≤ neg_curv_test_tol and its default value is 0.

▸ neg_curv_test_reg: Whether to do the curvature test with the primal regularization (see Zavala and Chiang, 2014).

The default value for this string option is "yes".

Possible values:

  • yes: use primal regularization with the inertia-free curvature test
  • no: use original IPOPT approach, in which the primal regularization is ignored

▸ max_hessian_perturbation: Maximum value of regularization parameter for handling negative curvature.

In order to guarantee that the search directions are indeed proper descent directions, Ipopt requires that the inertia of the (augmented) linear system for the step computation has the correct number of negative and positive eigenvalues. The idea is that this guides the algorithm away from maximizers and makes Ipopt more likely converge to first order optimal points that are minimizers. If the inertia is not correct, a multiple of the identity matrix is added to the Hessian of the Lagrangian in the augmented system. This parameter gives the maximum value of the regularization parameter. If a regularization of that size is not enough, the algorithm skips this iteration and goes to the restoration phase. This is delta_w^max in the implementation paper. The valid range for this real option is 0 < max_hessian_perturbation and its default value is 10+20.

▸ min_hessian_perturbation: Smallest perturbation of the Hessian block.

The size of the perturbation of the Hessian block is never selected smaller than this value, unless no perturbation is necessary. This is delta_w^min in implementation paper. The valid range for this real option is 0 ≤ min_hessian_perturbation and its default value is 10-20.

▸ perturb_inc_fact_first: Increase factor for x-s perturbation for very first perturbation.

The factor by which the perturbation is increased when a trial value was not sufficient - this value is used for the computation of the very first perturbation and allows a different value for the first perturbation than that used for the remaining perturbations. This is bar_kappa_w^+ in the implementation paper. The valid range for this real option is 1 < perturb_inc_fact_first and its default value is 100.

▸ perturb_inc_fact: Increase factor for x-s perturbation.

The factor by which the perturbation is increased when a trial value was not sufficient - this value is used for the computation of all perturbations except for the first. This is kappa_w^+ in the implementation paper. The valid range for this real option is 1 < perturb_inc_fact and its default value is 8.

▸ perturb_dec_fact: Decrease factor for x-s perturbation.

The factor by which the perturbation is decreased when a trial value is deduced from the size of the most recent successful perturbation. This is kappa_w^- in the implementation paper. The valid range for this real option is 0 < perturb_dec_fact < 1 and its default value is 0.333333.

▸ first_hessian_perturbation: Size of first x-s perturbation tried.

The first value tried for the x-s perturbation in the inertia correction scheme. This is delta_0 in the implementation paper. The valid range for this real option is 0 < first_hessian_perturbation and its default value is 0.0001.

▸ jacobian_regularization_value: Size of the regularization for rank-deficient constraint Jacobians.

This is bar delta_c in the implementation paper. The valid range for this real option is 0 ≤ jacobian_regularization_value and its default value is 10-08.

▸ jacobian_regularization_exponent (advanced): Exponent for mu in the regularization for rank-deficient constraint Jacobians.

This is kappa_c in the implementation paper. The valid range for this real option is 0 ≤ jacobian_regularization_exponent and its default value is 0.25.

▸ perturb_always_cd (advanced): Active permanent perturbation of constraint linearization.

Enabling this option leads to using the delta_c and delta_d perturbation for the computation of every search direction. Usually, it is only used when the iteration matrix is singular. The default value for this string option is "no".

Possible values: yes, no

Restoration Phase

▸ expect_infeasible_problem: Enable heuristics to quickly detect an infeasible problem.

This options is meant to activate heuristics that may speed up the infeasibility determination if you expect that there is a good chance for the problem to be infeasible. In the filter line search procedure, the restoration phase is called more quickly than usually, and more reduction in the constraint violation is enforced before the restoration phase is left. If the problem is square, this option is enabled automatically. The default value for this string option is "no".

Possible values: yes, no

▸ expect_infeasible_problem_ctol: Threshold for disabling "expect_infeasible_problem" option.

If the constraint violation becomes smaller than this threshold, the "expect_infeasible_problem" heuristics in the filter line search are disabled. If the problem is square, this options is set to 0. The valid range for this real option is 0 ≤ expect_infeasible_problem_ctol and its default value is 0.001.

▸ expect_infeasible_problem_ytol: Multiplier threshold for activating "expect_infeasible_problem" option.

If the max norm of the constraint multipliers becomes larger than this value and "expect_infeasible_problem" is chosen, then the restoration phase is entered. The valid range for this real option is 0 < expect_infeasible_problem_ytol and its default value is 10+08.

▸ start_with_resto: Whether to switch to restoration phase in first iteration.

Setting this option to "yes" forces the algorithm to switch to the feasibility restoration phase in the first iteration. If the initial point is feasible, the algorithm will abort with a failure. The default value for this string option is "no".

Possible values: yes, no

▸ soft_resto_pderror_reduction_factor: Required reduction in primal-dual error in the soft restoration phase.

The soft restoration phase attempts to reduce the primal-dual error with regular steps. If the damped primal-dual step (damped only to satisfy the fraction-to-the-boundary rule) is not decreasing the primal-dual error by at least this factor, then the regular restoration phase is called. Choosing "0" here disables the soft restoration phase. The valid range for this real option is 0 ≤ soft_resto_pderror_reduction_factor and its default value is 0.9999.

▸ max_soft_resto_iters (advanced): Maximum number of iterations performed successively in soft restoration phase.

If the soft restoration phase is performed for more than so many iterations in a row, the regular restoration phase is called. The valid range for this integer option is 0 ≤ max_soft_resto_iters and its default value is 10.

▸ required_infeasibility_reduction: Required reduction of infeasibility before leaving restoration phase.

The restoration phase algorithm is performed, until a point is found that is acceptable to the filter and the infeasibility has been reduced by at least the fraction given by this option. The valid range for this real option is 0 ≤ required_infeasibility_reduction < 1 and its default value is 0.9.

▸ max_resto_iter (advanced): Maximum number of successive iterations in restoration phase.

The algorithm terminates with an error message if the number of iterations successively taken in the restoration phase exceeds this number. The valid range for this integer option is 0 ≤ max_resto_iter and its default value is 3000000.

▸ evaluate_orig_obj_at_resto_trial: Determines if the original objective function should be evaluated at restoration phase trial points.

Enabling this option makes the restoration phase algorithm evaluate the objective function of the original problem at every trial point encountered during the restoration phase, even if this value is not required. In this way, it is guaranteed that the original objective function can be evaluated without error at all accepted iterates; otherwise the algorithm might fail at a point where the restoration phase accepts an iterate that is good for the restoration phase problem, but not the original problem. On the other hand, if the evaluation of the original objective is expensive, this might be costly. The default value for this string option is "yes".

Possible values: yes, no

▸ resto_penalty_parameter (advanced): Penalty parameter in the restoration phase objective function.

This is the parameter rho in equation (31a) in the Ipopt implementation paper. The valid range for this real option is 0 < resto_penalty_parameter and its default value is 1000.

▸ resto_proximity_weight (advanced): Weighting factor for the proximity term in restoration phase objective.

This determines how the parameter zeta in equation (29a) in the implementation paper is computed. zeta here is resto_proximity_weight*sqrt(mu), where mu is the current barrier parameter. The valid range for this real option is 0 ≤ resto_proximity_weight and its default value is 1.

▸ bound_mult_reset_threshold: Threshold for resetting bound multipliers after the restoration phase.

After returning from the restoration phase, the bound multipliers are updated with a Newton step for complementarity. Here, the change in the primal variables during the entire restoration phase is taken to be the corresponding primal Newton step. However, if after the update the largest bound multiplier exceeds the threshold specified by this option, the multipliers are all reset to 1. The valid range for this real option is 0 ≤ bound_mult_reset_threshold and its default value is 1000.

▸ constr_mult_reset_threshold: Threshold for resetting equality and inequality multipliers after restoration phase.

After returning from the restoration phase, the constraint multipliers are recomputed by a least square estimate. This option triggers when those least-square estimates should be ignored. The valid range for this real option is 0 ≤ constr_mult_reset_threshold and its default value is 0.

▸ resto_failure_feasibility_threshold (advanced): Threshold for primal infeasibility to declare failure of restoration phase.

If the restoration phase is terminated because of the "acceptable" termination criteria and the primal infeasibility is smaller than this value, the restoration phase is declared to have failed. The default value is actually 1e2*tol, where tol is the general termination tolerance. The valid range for this real option is 0 ≤ resto_failure_feasibility_threshold and its default value is 0.

Hessian Approximation

▸ limited_memory_aug_solver (advanced): Strategy for solving the augmented system for low-rank Hessian.

The default value for this string option is "sherman-morrison".

Possible values:

  • sherman-morrison: use Sherman-Morrison formula
  • extended: use an extended augmented system

▸ limited_memory_max_history: Maximum size of the history for the limited quasi-Newton Hessian approximation.

This option determines the number of most recent iterations that are taken into account for the limited-memory quasi-Newton approximation. The valid range for this integer option is 0 ≤ limited_memory_max_history and its default value is 6.

▸ limited_memory_update_type: Quasi-Newton update formula for the limited memory quasi-Newton approximation.

The default value for this string option is "bfgs".

Possible values:

  • bfgs: BFGS update (with skipping)
  • sr1: SR1 (not working well)

▸ limited_memory_initialization: Initialization strategy for the limited memory quasi-Newton approximation.

Determines how the diagonal Matrix B_0 as the first term in the limited memory approximation should be computed. The default value for this string option is "scalar1".

Possible values:

  • scalar1: sigma = s^Ty/s^Ts
  • scalar2: sigma = y^Ty/s^Ty
  • scalar3: arithmetic average of scalar1 and scalar2
  • scalar4: geometric average of scalar1 and scalar2
  • constant: sigma = limited_memory_init_val

▸ limited_memory_init_val: Value for B0 in low-rank update.

The starting matrix in the low rank update, B0, is chosen to be this multiple of the identity in the first iteration (when no updates have been performed yet), and is constantly chosen as this value, if "limited_memory_initialization" is "constant". The valid range for this real option is 0 < limited_memory_init_val and its default value is 1.

▸ limited_memory_init_val_max: Upper bound on value for B0 in low-rank update.

The starting matrix in the low rank update, B0, is chosen to be this multiple of the identity in the first iteration (when no updates have been performed yet), and is constantly chosen as this value, if "limited_memory_initialization" is "constant". The valid range for this real option is 0 < limited_memory_init_val_max and its default value is 10+08.

▸ limited_memory_init_val_min: Lower bound on value for B0 in low-rank update.

The starting matrix in the low rank update, B0, is chosen to be this multiple of the identity in the first iteration (when no updates have been performed yet), and is constantly chosen as this value, if "limited_memory_initialization" is "constant". The valid range for this real option is 0 < limited_memory_init_val_min and its default value is 10-08.

▸ limited_memory_max_skipping: Threshold for successive iterations where update is skipped.

If the update is skipped more than this number of successive iterations, the quasi-Newton approximation is reset. The valid range for this integer option is 1 ≤ limited_memory_max_skipping and its default value is 2.

▸ limited_memory_special_for_resto: Determines if the quasi-Newton updates should be special during the restoration phase.

Until Nov 2010, Ipopt used a special update during the restoration phase, but it turned out that this does not work well. The new default uses the regular update procedure and it improves results. If for some reason you want to get back to the original update, set this option to "yes". The default value for this string option is "no".

Possible values: yes, no

▸ hessian_approximation: Indicates what Hessian information is to be used.

This determines which kind of information for the Hessian of the Lagrangian function is used by the algorithm. The default value for this string option is "exact".

Possible values:

  • exact: Use second derivatives provided by the NLP.
  • limited-memory: Perform a limited-memory quasi-Newton approximation

▸ hessian_approximation_space (advanced): Indicates in which subspace the Hessian information is to be approximated.

The default value for this string option is "nonlinear-variables".

Possible values:

  • nonlinear-variables: only in space of nonlinear variables.
  • all-variables: in space of all variables (without slacks)

Derivative Checker

▸ derivative_test: Enable derivative checker

If this option is enabled, a (slow!) derivative test will be performed before the optimization. The test is performed at the user provided starting point and marks derivative values that seem suspicious The default value for this string option is "none".

Possible values:

  • none: do not perform derivative test
  • first-order: perform test of first derivatives at starting point
  • second-order: perform test of first and second derivatives at starting point
  • only-second-order: perform test of second derivatives at starting point

▸ derivative_test_first_index: Index of first quantity to be checked by derivative checker

If this is set to -2, then all derivatives are checked. Otherwise, for the first derivative test it specifies the first variable for which the test is done (counting starts at 0). For second derivatives, it specifies the first constraint for which the test is done; counting of constraint indices starts at 0, and -1 refers to the objective function Hessian. The valid range for this integer option is -2 ≤ derivative_test_first_index and its default value is -2.

▸ derivative_test_perturbation: Size of the finite difference perturbation in derivative test.

This determines the relative perturbation of the variable entries. The valid range for this real option is 0 < derivative_test_perturbation and its default value is 10-08.

▸ derivative_test_tol: Threshold for indicating wrong derivative.

If the relative deviation of the estimated derivative from the given one is larger than this value, the corresponding derivative is marked as wrong. The valid range for this real option is 0 < derivative_test_tol and its default value is 0.0001.

▸ derivative_test_print_all: Indicates whether information for all estimated derivatives should be printed.

Determines verbosity of derivative checker. The default value for this string option is "no".

Possible values: yes, no

▸ point_perturbation_radius: Maximal perturbation of an evaluation point.

If a random perturbation of a points is required, this number indicates the maximal perturbation. This is for example used when determining the center point at which the finite difference derivative test is executed. The valid range for this real option is 0 ≤ point_perturbation_radius and its default value is 10.

MA27 Linear Solver

▸ ma27_print_level: Debug printing level for the linear solver MA27

0: no printing; 1: Error messages only; 2: Error and warning messages; 3: Error and warning messages and terse monitoring; 4: All information. The valid range for this integer option is 0 ≤ ma27_print_level ≤ 4 and its default value is 0.

▸ ma27_pivtol: Pivot tolerance for the linear solver MA27.

A smaller number pivots for sparsity, a larger number pivots for stability. The valid range for this real option is 0 < ma27_pivtol < 1 and its default value is 10-08.

▸ ma27_pivtolmax: Maximum pivot tolerance for the linear solver MA27.

Ipopt may increase pivtol as high as ma27_pivtolmax to get a more accurate solution to the linear system. The valid range for this real option is 0 < ma27_pivtolmax < 1 and its default value is 0.0001.

▸ ma27_liw_init_factor: Integer workspace memory for MA27.

The initial integer workspace memory = liw_init_factor * memory required by unfactored system. Ipopt will increase the workspace size by ma27_meminc_factor if required. The valid range for this real option is 1 ≤ ma27_liw_init_factor and its default value is 5.

▸ ma27_la_init_factor: Real workspace memory for MA27.

The initial real workspace memory = la_init_factor * memory required by unfactored system. Ipopt will increase the workspace size by ma27_meminc_factor if required. The valid range for this real option is 1 ≤ ma27_la_init_factor and its default value is 5.

▸ ma27_meminc_factor: Increment factor for workspace size for MA27.

If the integer or real workspace is not large enough, Ipopt will increase its size by this factor. The valid range for this real option is 1 ≤ ma27_meminc_factor and its default value is 2.

▸ ma27_skip_inertia_check (advanced): Whether to always pretend that inertia is correct.

Setting this option to "yes" essentially disables inertia check. This option makes the algorithm non-robust and easily fail, but it might give some insight into the necessity of inertia control. The default value for this string option is "no".

Possible values: yes, no

▸ ma27_ignore_singularity (advanced): Whether to use MA27's ability to solve a linear system even if the matrix is singular.

Setting this option to "yes" means that Ipopt will call MA27 to compute solutions for right hand sides, even if MA27 has detected that the matrix is singular (but is still able to solve the linear system). In some cases this might be better than using Ipopt's heuristic of small perturbation of the lower diagonal of the KKT matrix. The default value for this string option is "no".

Possible values: yes, no

MA57 Linear Solver

▸ ma57_print_level: Debug printing level for the linear solver MA57

0: no printing; 1: Error messages only; 2: Error and warning messages; 3: Error and warning messages and terse monitoring; >=4: All information. The valid range for this integer option is 0 ≤ ma57_print_level and its default value is 0.

▸ ma57_pivtol: Pivot tolerance for the linear solver MA57.

A smaller number pivots for sparsity, a larger number pivots for stability. The valid range for this real option is 0 < ma57_pivtol < 1 and its default value is 10-08.

▸ ma57_pivtolmax: Maximum pivot tolerance for the linear solver MA57.

Ipopt may increase pivtol as high as ma57_pivtolmax to get a more accurate solution to the linear system. The valid range for this real option is 0 < ma57_pivtolmax < 1 and its default value is 0.0001.

▸ ma57_pre_alloc: Safety factor for work space memory allocation for the linear solver MA57.

If 1 is chosen, the suggested amount of work space is used. However, choosing a larger number might avoid reallocation if the suggest values do not suffice. The valid range for this real option is 1 ≤ ma57_pre_alloc and its default value is 1.05.

▸ ma57_pivot_order: Controls pivot order in MA57

This is ICNTL(6) in MA57. The valid range for this integer option is 0 ≤ ma57_pivot_order ≤ 5 and its default value is 5.

▸ ma57_automatic_scaling: Controls whether to enable automatic scaling in MA57

For higher reliability of the MA57 solver, you may want to set this option to yes. This is ICNTL(15) in MA57. The default value for this string option is "no".

Possible values: yes, no

▸ ma57_block_size: Controls block size used by Level 3 BLAS in MA57BD

This is ICNTL(11) in MA57. The valid range for this integer option is 1 ≤ ma57_block_size and its default value is 16.

▸ ma57_node_amalgamation: Node amalgamation parameter

This is ICNTL(12) in MA57. The valid range for this integer option is 1 ≤ ma57_node_amalgamation and its default value is 16.

▸ ma57_small_pivot_flag: Handling of small pivots

If set to 1, then when small entries defined by CNTL(2) are detected they are removed and the corresponding pivots placed at the end of the factorization. This can be particularly efficient if the matrix is highly rank deficient. This is ICNTL(16) in MA57. The valid range for this integer option is 0 ≤ ma57_small_pivot_flag ≤ 1 and its default value is 0.

MA77 Linear Solver

▸ ma77_print_level: Debug printing level for the linear solver MA77

<0: no printing; 0: Error and warning messages only; 1: Limited diagnostic printing; >1 Additional diagnostic printing. The valid range for this integer option is unrestricted and its default value is -1.

▸ ma77_buffer_lpage: Number of scalars per MA77 in-core buffer page in the out-of-core solver MA77

Must be at most ma77_file_size. The valid range for this integer option is 1 ≤ ma77_buffer_lpage and its default value is 4096.

▸ ma77_buffer_npage: Number of pages that make up MA77 buffer

Number of pages of size buffer_lpage that exist in-core for the out-of-core solver MA77. The valid range for this integer option is 1 ≤ ma77_buffer_npage and its default value is 1600.

▸ ma77_file_size: Target size of each temporary file for MA77, scalars per type

MA77 uses many temporary files, this option controls the size of each one. It is measured in the number of entries (int or double), NOT bytes. The valid range for this integer option is 1 ≤ ma77_file_size and its default value is 2097152.

▸ ma77_maxstore: Maximum storage size for MA77 in-core mode

If greater than zero, the maximum size of factors stored in core before out-of-core mode is invoked. The valid range for this integer option is 0 ≤ ma77_maxstore and its default value is 0.

▸ ma77_nemin: Node Amalgamation parameter

Two nodes in elimination tree are merged if result has fewer than ma77_nemin variables. The valid range for this integer option is 1 ≤ ma77_nemin and its default value is 8.

▸ ma77_small: Zero Pivot Threshold

Any pivot less than ma77_small is treated as zero. The valid range for this real option is 0 ≤ ma77_small and its default value is 10-20.

▸ ma77_static: Static Pivoting Threshold

See MA77 documentation. Either ma77_static=0.0 or ma77_static>ma77_small. ma77_static=0.0 disables static pivoting. The valid range for this real option is 0 ≤ ma77_static and its default value is 0.

▸ ma77_u: Pivoting Threshold

See MA77 documentation. The valid range for this real option is 0 ≤ ma77_u ≤ 0.5 and its default value is 10-08.

▸ ma77_umax: Maximum Pivoting Threshold

Maximum value to which u will be increased to improve quality. The valid range for this real option is 0 ≤ ma77_umax ≤ 0.5 and its default value is 0.0001.

▸ ma77_order: Controls type of ordering used by MA77

The default value for this string option is "metis".

Possible values:

  • amd: Use the HSL_MC68 approximate minimum degree algorithm
  • metis: Use the MeTiS nested dissection algorithm (if available)

MA86 Linear Solver

▸ ma86_print_level: Debug printing level

<0: no printing; 0: Error and warning messages only; 1: Limited diagnostic printing; >1 Additional diagnostic printing. The valid range for this integer option is unrestricted and its default value is -1.

▸ ma86_nemin: Node Amalgamation parameter

Two nodes in elimination tree are merged if result has fewer than ma86_nemin variables. The valid range for this integer option is 1 ≤ ma86_nemin and its default value is 32.

▸ ma86_small: Zero Pivot Threshold

Any pivot less than ma86_small is treated as zero. The valid range for this real option is 0 ≤ ma86_small and its default value is 10-20.

▸ ma86_static: Static Pivoting Threshold

See MA86 documentation. Either ma86_static=0.0 or ma86_static>ma86_small. ma86_static=0.0 disables static pivoting. The valid range for this real option is 0 ≤ ma86_static and its default value is 0.

▸ ma86_u: Pivoting Threshold

See MA86 documentation. The valid range for this real option is 0 ≤ ma86_u ≤ 0.5 and its default value is 10-08.

▸ ma86_umax: Maximum Pivoting Threshold

Maximum value to which u will be increased to improve quality. The valid range for this real option is 0 ≤ ma86_umax ≤ 0.5 and its default value is 0.0001.

▸ ma86_scaling: Controls scaling of matrix

The default value for this string option is "mc64".

Possible values:

  • none: Do not scale the linear system matrix
  • mc64: Scale linear system matrix using MC64
  • mc77: Scale linear system matrix using MC77 [1,3,0]

▸ ma86_order: Controls type of ordering

The default value for this string option is "auto".

Possible values:

  • auto: Try both AMD and MeTiS, pick best
  • amd: Use the HSL_MC68 approximate minimum degree algorithm
  • metis: Use the MeTiS nested dissection algorithm (if available)

MA97 Linear Solver

▸ ma97_print_level: Debug printing level

<0: no printing; 0: Error and warning messages only; 1: Limited diagnostic printing; >1 Additional diagnostic printing. The valid range for this integer option is unrestricted and its default value is -1.

▸ ma97_nemin: Node Amalgamation parameter

Two nodes in elimination tree are merged if result has fewer than ma97_nemin variables. The valid range for this integer option is 1 ≤ ma97_nemin and its default value is 8.

▸ ma97_small: Zero Pivot Threshold

Any pivot less than ma97_small is treated as zero. The valid range for this real option is 0 ≤ ma97_small and its default value is 10-20.

▸ ma97_u: Pivoting Threshold

See MA97 documentation. The valid range for this real option is 0 ≤ ma97_u ≤ 0.5 and its default value is 10-08.

▸ ma97_umax: Maximum Pivoting Threshold

See MA97 documentation. The valid range for this real option is 0 ≤ ma97_umax ≤ 0.5 and its default value is 0.0001.

▸ ma97_scaling: Specifies strategy for scaling

The default value for this string option is "dynamic".

Possible values:

  • none: Do not scale the linear system matrix
  • mc30: Scale all linear system matrices using MC30
  • mc64: Scale all linear system matrices using MC64
  • mc77: Scale all linear system matrices using MC77 [1,3,0]
  • dynamic: Dynamically select scaling according to rules specified by ma97_scalingX and ma97_switchX options.

▸ ma97_scaling1 (advanced): First scaling.

If ma97_scaling=dynamic, this scaling is used according to the trigger ma97_switch1. If ma97_switch2 is triggered it is disabled. The default value for this string option is "mc64".

Possible values:

  • none: No scaling
  • mc30: Scale linear system matrix using MC30
  • mc64: Scale linear system matrix using MC64
  • mc77: Scale linear system matrix using MC77 [1,3,0]

▸ ma97_switch1 (advanced): First switch, determine when ma97_scaling1 is enabled.

If ma97_scaling=dynamic, ma97_scaling1 is enabled according to this condition. If ma97_switch2 occurs this option is henceforth ignored. The default value for this string option is "od_hd_reuse".

Possible values:

  • never: Scaling is never enabled.
  • at_start: Scaling to be used from the very start.
  • at_start_reuse: Scaling to be used on first iteration, then reused thereafter.
  • on_demand: Scaling to be used after Ipopt request improved solution (i.e. iterative refinement has failed).
  • on_demand_reuse: As on_demand, but reuse scaling from previous itr
  • high_delay: Scaling to be used after more than 0.05*n delays are present
  • high_delay_reuse: Scaling to be used only when previous itr created more that 0.05*n additional delays, otherwise reuse scaling from previous itr
  • od_hd: Combination of on_demand and high_delay
  • od_hd_reuse: Combination of on_demand_reuse and high_delay_reuse

▸ ma97_scaling2 (advanced): Second scaling.

If ma97_scaling=dynamic, this scaling is used according to the trigger ma97_switch2. If ma97_switch3 is triggered it is disabled. The default value for this string option is "mc64".

Possible values:

  • none: No scaling
  • mc30: Scale linear system matrix using MC30
  • mc64: Scale linear system matrix using MC64
  • mc77: Scale linear system matrix using MC77 [1,3,0]

▸ ma97_switch2 (advanced): Second switch, determine when ma97_scaling2 is enabled.

If ma97_scaling=dynamic, ma97_scaling2 is enabled according to this condition. If ma97_switch3 occurs this option is henceforth ignored. The default value for this string option is "never".

Possible values:

  • never: Scaling is never enabled.
  • at_start: Scaling to be used from the very start.
  • at_start_reuse: Scaling to be used on first iteration, then reused thereafter.
  • on_demand: Scaling to be used after Ipopt request improved solution (i.e. iterative refinement has failed).
  • on_demand_reuse: As on_demand, but reuse scaling from previous itr
  • high_delay: Scaling to be used after more than 0.05*n delays are present
  • high_delay_reuse: Scaling to be used only when previous itr created more that 0.05*n additional delays, otherwise reuse scaling from previous itr
  • od_hd: Combination of on_demand and high_delay
  • od_hd_reuse: Combination of on_demand_reuse and high_delay_reuse

▸ ma97_scaling3 (advanced): Third scaling.

If ma97_scaling=dynamic, this scaling is used according to the trigger ma97_switch3. The default value for this string option is "mc64".

Possible values:

  • none: No scaling
  • mc30: Scale linear system matrix using MC30
  • mc64: Scale linear system matrix using MC64
  • mc77: Scale linear system matrix using MC77 [1,3,0]

▸ ma97_switch3 (advanced): Third switch, determine when ma97_scaling3 is enabled.

If ma97_scaling=dynamic, ma97_scaling3 is enabled according to this condition. The default value for this string option is "never".

Possible values:

  • never: Scaling is never enabled.
  • at_start: Scaling to be used from the very start.
  • at_start_reuse: Scaling to be used on first iteration, then reused thereafter.
  • on_demand: Scaling to be used after Ipopt request improved solution (i.e. iterative refinement has failed).
  • on_demand_reuse: As on_demand, but reuse scaling from previous itr
  • high_delay: Scaling to be used after more than 0.05*n delays are present
  • high_delay_reuse: Scaling to be used only when previous itr created more that 0.05*n additional delays, otherwise reuse scaling from previous itr
  • od_hd: Combination of on_demand and high_delay
  • od_hd_reuse: Combination of on_demand_reuse and high_delay_reuse

▸ ma97_order: Controls type of ordering

The default value for this string option is "auto".

Possible values:

  • auto: Use HSL_MA97 heuristic to guess best of AMD and METIS
  • best: Try both AMD and MeTiS, pick best
  • amd: Use the HSL_MC68 approximate minimum degree algorithm
  • metis: Use the MeTiS nested dissection algorithm
  • matched-auto: Use the HSL_MC80 matching with heuristic choice of AMD or METIS
  • matched-metis: Use the HSL_MC80 matching based ordering with METIS
  • matched-amd: Use the HSL_MC80 matching based ordering with AMD

▸ ma97_solve_blas3 (advanced): Controls if blas2 or blas3 routines are used for solve

The default value for this string option is "no".

Possible values:

  • no: Use BLAS2 (faster, some implementations bit incompatible)
  • yes: Use BLAS3 (slower)

Pardiso (pardiso-project.org) Linear Solver

▸ pardiso_matching_strategy: Matching strategy to be used by Pardiso

This is IPAR(13) in Pardiso manual. The default value for this string option is "complete+2x2".

Possible values:

  • complete: Match complete (IPAR(13)=1)
  • complete+2x2: Match complete+2x2 (IPAR(13)=2)
  • constraints: Match constraints (IPAR(13)=3)

▸ pardiso_redo_symbolic_fact_only_if_inertia_wrong (advanced): Toggle for handling case when elements were perturbed by Pardiso.

The default value for this string option is "no".

Possible values:

  • no: Always redo symbolic factorization when elements were perturbed
  • yes: Only redo symbolic factorization when elements were perturbed if also the inertia was wrong

▸ pardiso_repeated_perturbation_means_singular (advanced): Whether to assume that matrix is singular if elements were perturbed after recent symbolic factorization.

The default value for this string option is "no".

Possible values: yes, no

▸ pardiso_msglvl: Pardiso message level

This is MSGLVL in the Pardiso manual. The valid range for this integer option is 0 ≤ pardiso_msglvl and its default value is 0.

▸ pardiso_skip_inertia_check (advanced): Whether to pretend that inertia is correct.

Setting this option to "yes" essentially disables inertia check. This option makes the algorithm non-robust and easily fail, but it might give some insight into the necessity of inertia control. The default value for this string option is "no".

Possible values: yes, no

▸ pardiso_max_iterative_refinement_steps: Limit on number of iterative refinement steps.

The solver does not perform more than the absolute value of this value steps of iterative refinement and stops the process if a satisfactory level of accuracy of the solution in terms of backward error is achieved. If negative, the accumulation of the residue uses extended precision real and complex data types. Perturbed pivots result in iterative refinement. The solver automatically performs two steps of iterative refinements when perturbed pivots are obtained during the numerical factorization and this option is set to 0. The valid range for this integer option is unrestricted and its default value is 0.

▸ pardiso_order: Controls the fill-in reduction ordering algorithm for the input matrix.

The default value for this string option is "metis".

Possible values:

  • amd: minimum degree algorithm
  • one
  • metis: MeTiS nested dissection algorithm
  • pmetis: parallel (OpenMP) version of MeTiS nested dissection algorithm
  • four
  • five

▸ pardiso_max_iter (advanced): Maximum number of Krylov-Subspace Iteration

DPARM(1) The valid range for this integer option is 1 ≤ pardiso_max_iter and its default value is 500.

▸ pardiso_iter_relative_tol (advanced): Relative Residual Convergence

DPARM(2) The valid range for this real option is 0 < pardiso_iter_relative_tol < 1 and its default value is 10-06.

▸ pardiso_iter_coarse_size (advanced): Maximum Size of Coarse Grid Matrix

DPARM(3) The valid range for this integer option is 1 ≤ pardiso_iter_coarse_size and its default value is 5000.

▸ pardiso_iter_max_levels (advanced): Maximum Size of Grid Levels

DPARM(4) The valid range for this integer option is 1 ≤ pardiso_iter_max_levels and its default value is 10.

▸ pardiso_iter_dropping_factor (advanced): dropping value for incomplete factor

DPARM(5) The valid range for this real option is 0 < pardiso_iter_dropping_factor < 1 and its default value is 0.5.

▸ pardiso_iter_dropping_schur (advanced): dropping value for sparsify schur complement factor

DPARM(6) The valid range for this real option is 0 < pardiso_iter_dropping_schur < 1 and its default value is 0.1.

▸ pardiso_iter_max_row_fill (advanced): max fill for each row

DPARM(7) The valid range for this integer option is 1 ≤ pardiso_iter_max_row_fill and its default value is 10000000.

▸ pardiso_iter_inverse_norm_factor (advanced)

DPARM(8) The valid range for this real option is 1 < pardiso_iter_inverse_norm_factor and its default value is 5 · 10+06.

▸ pardiso_iterative (advanced): Switch for iterative solver in Pardiso library

The default value for this string option is "no".

Possible values: yes, no

▸ pardiso_max_droptol_corrections (advanced): Maximal number of decreases of drop tolerance during one solve.

This is relevant only for iterative Pardiso options. The valid range for this integer option is 1 ≤ pardiso_max_droptol_corrections and its default value is 4.

Pardiso (MKL) Linear Solver

▸ pardisomkl_matching_strategy: Matching strategy to be used by Pardiso

This is IPAR(13) in Pardiso manual. The default value for this string option is "complete+2x2".

Possible values:

  • complete: Match complete (IPAR(13)=1)
  • complete+2x2: Match complete+2x2 (IPAR(13)=2)
  • constraints: Match constraints (IPAR(13)=3)

▸ pardisomkl_redo_symbolic_fact_only_if_inertia_wrong (advanced): Toggle for handling case when elements were perturbed by Pardiso.

The default value for this string option is "no".

Possible values:

  • no: Always redo symbolic factorization when elements were perturbed
  • yes: Only redo symbolic factorization when elements were perturbed if also the inertia was wrong

▸ pardisomkl_repeated_perturbation_means_singular (advanced): Whether to assume that matrix is singular if elements were perturbed after recent symbolic factorization.

The default value for this string option is "no".

Possible values: yes, no

▸ pardisomkl_msglvl: Pardiso message level

This is MSGLVL in the Pardiso manual. The valid range for this integer option is 0 ≤ pardisomkl_msglvl and its default value is 0.

▸ pardisomkl_skip_inertia_check (advanced): Whether to pretend that inertia is correct.

Setting this option to "yes" essentially disables inertia check. This option makes the algorithm non-robust and easily fail, but it might give some insight into the necessity of inertia control. The default value for this string option is "no".

Possible values: yes, no

▸ pardisomkl_max_iterative_refinement_steps: Limit on number of iterative refinement steps.

The solver does not perform more than the absolute value of this value steps of iterative refinement and stops the process if a satisfactory level of accuracy of the solution in terms of backward error is achieved. If negative, the accumulation of the residue uses extended precision real and complex data types. Perturbed pivots result in iterative refinement. The solver automatically performs two steps of iterative refinements when perturbed pivots are obtained during the numerical factorization and this option is set to 0. The valid range for this integer option is unrestricted and its default value is 1.

▸ pardisomkl_order: Controls the fill-in reduction ordering algorithm for the input matrix.

The default value for this string option is "metis".

Possible values:

  • amd: minimum degree algorithm
  • one: undocumented
  • metis: MeTiS nested dissection algorithm
  • pmetis: parallel (OpenMP) version of MeTiS nested dissection algorithm

SPRAL Linear Solver

▸ spral_cpu_block_size: CPU Parallelization Block Size

Block size to use for parallelization of large nodes on CPU resources. The valid range for this integer option is 1 ≤ spral_cpu_block_size and its default value is 256.

▸ spral_gpu_perf_coeff: GPU Performance Coefficient

How many times faster a GPU is than a CPU at factoring a subtree. The valid range for this real option is 0 < spral_gpu_perf_coeff and its default value is 1.

▸ spral_ignore_numa: Non-uniform memory access (NUMA) region setting.

The default value for this string option is "yes".

Possible values:

  • no: Do not treat CPUs and GPUs as belonging to a single NUMA region.
  • yes: Treat CPUs and GPUs as belonging to a single NUMA region.

▸ spral_max_load_inbalance: Maximum Permissible Load

Maximum permissible load inbalance for leaf subtree allocations. The valid range for this real option is 1 < spral_max_load_inbalance and its default value is 1.2.

▸ spral_min_gpu_work: Minimum GPU Work

Minimum number of FLOPS in subtree before scheduling on GPU. The valid range for this real option is 0 ≤ spral_min_gpu_work and its default value is 5 · 10+09.

▸ spral_nemin: Node Amalgamation Parameter

Two nodes in the elimination tree are merged if the result has fewer than spral_nemin variables. The valid range for this integer option is 1 ≤ spral_nemin and its default value is 32.

▸ spral_order: Controls type of ordering used by SPRAL

The default value for this string option is "matching".

Possible values:

  • metis: Use METIS with default settings.
  • matching: Use matching-based elimination ordering.

▸ spral_pivot_method: Specifies strategy for scaling in SPRAL linear solver.

The default value for this string option is "block".

Possible values:

  • aggressive: Aggressive a posteori pivoting.
  • block: Block a posteori pivoting.
  • threshold: Threshold partial pivoting (not parallel).

▸ spral_print_level: Print level for the linear solver SPRAL

<0: no printing, 0: errors and warning messages, 1: limited diagnostics, >1: additional diagnostics The valid range for this integer option is unrestricted and its default value is -1.

▸ spral_scaling: Specifies strategy for scaling in SPRAL linear solver.

The default value for this string option is "matching".

Possible values:

  • none: Do not scale the linear system matrix.
  • mc64: Scale using weighted bipartite matching (MC64).
  • auction: Scale using the auction algorithm.
  • matching: Scale using the matching-based ordering.
  • ruiz: Scale using the norm-equilibration algorithm of Ruiz (MC77).
  • dynamic: Dynamically select scaling according to switch options.

▸ spral_scaling_1 (advanced): First scaling strategy.

If spral_scaling = dynamic, this scaling is used according to the trigger spral_switch_1. If spral_switch_2 is triggered, it is disabled. The default value for this string option is "matching".

Possible values:

  • none: Do not scale the linear system matrix.
  • mc64: Scale using weighted bipartite matching (MC64).
  • auction: Scale using the auction algorithm.
  • matching: Scale using the matching-based ordering.
  • ruiz: Scale using the norm-equilibration algorithm of Ruiz (MC77).

▸ spral_scaling_2 (advanced): Second scaling strategy.

If spral_scaling = dynamic, this scaling is used according to the trigger spral_switch_2. If spral_switch_3 is triggered, it is disabled. The default value for this string option is "mc64".

Possible values:

  • none: Do not scale the linear system matrix.
  • mc64: Scale using weighted bipartite matching (MC64).
  • auction: Scale using the auction algorithm.
  • matching: Scale using the matching-based ordering.
  • ruiz: Scale using the norm-equilibration algorithm of Ruiz (MC77).

▸ spral_scaling_3 (advanced): Third scaling strategy.

If spral_scaling = dynamic, this scaling is used according to the trigger spral_switch_3. The default value for this string option is "none".

Possible values:

  • none: Do not scale the linear system matrix.
  • mc64: Scale using weighted bipartite matching (MC64).
  • auction: Scale using the auction algorithm.
  • matching: Scale using the matching-based ordering.
  • ruiz: Scale using the norm-equilibration algorithm of Ruiz (MC77).

▸ spral_switch_1 (advanced): First switch, determining when spral_scaling_1 is enabled.

If spral_scaling = dynamic, spral_scaling_1 is enabled according to this condition. If spral_switch_2 occurs, this option is henceforth ignored. The default value for this string option is "at_start".

Possible values:

  • never: Scaling is never enabled.
  • at_start: Scaling is used from the very start.
  • at_start_reuse: Scaling is used on the first iteration, then reused thereafter.
  • on_demand: Scaling is used when iterative refinement has failed.
  • on_demand_reuse: As on_demand, but scaling from previous iteration is reused.
  • high_delay: Scaling is used after more than 0.05*n delays are present.
  • high_delay_reuse: Scaling is used only when previous iteration created more that 0.05*n additional delays; otherwise, reuse scaling from the previous iteration.
  • od_hd: Combination of on_demand and high_delay.
  • od_hd_reuse: Combination of on_demand_reuse and high_delay_reuse

▸ spral_switch_2 (advanced): Second switch, determining when spral_scaling_2 is enabled.

If spral_scaling = dynamic, spral_scaling_2 is enabled according to this condition. If spral_switch_3 occurs, this option is henceforth ignored. The default value for this string option is "on_demand".

Possible values:

  • never: Scaling is never enabled.
  • at_start: Scaling is used from the very start.
  • at_start_reuse: Scaling is used on the first iteration, then reused thereafter.
  • on_demand: Scaling is used when iterative refinement has failed.
  • on_demand_reuse: As on_demand, but scaling from previous iteration is reused.
  • high_delay: Scaling is used after more than 0.05*n delays are present.
  • high_delay_reuse: Scaling is used only when previous iteration created more that 0.05*n additional delays; otherwise, reuse scaling from the previous iteration.
  • od_hd: Combination of on_demand and high_delay.
  • od_hd_reuse: Combination of on_demand_reuse and high_delay_reuse

▸ spral_switch_3 (advanced): Third switch, determining when spral_scaling_3 is enabled.

If spral_scaling = dynamic, spral_scaling_3 is enabled according to this condition. The default value for this string option is "never".

Possible values:

  • never: Scaling is never enabled.
  • at_start: Scaling is used from the very start.
  • at_start_reuse: Scaling is used on the first iteration, then reused thereafter.
  • on_demand: Scaling is used when iterative refinement has failed.
  • on_demand_reuse: As on_demand, but scaling from previous iteration is reused.
  • high_delay: Scaling is used after more than 0.05*n delays are present.
  • high_delay_reuse: Scaling is used only when previous iteration created more that 0.05*n additional delays; otherwise, reuse scaling from the previous iteration.
  • od_hd: Combination of on_demand and high_delay.
  • od_hd_reuse: Combination of on_demand_reuse and high_delay_reuse

▸ spral_small: Zero Pivot Threshold

Any pivot less than spral_small is treated as zero. The valid range for this real option is 0 < spral_small and its default value is 10-20.

▸ spral_small_subtree_threshold: Small Subtree Threshold

Maximum number of FLOPS in a subtree treated as a single task. The valid range for this real option is 0 < spral_small_subtree_threshold and its default value is 4 · 10+06.

▸ spral_u: Pivoting Threshold

Relative pivot threshold used in symmetric indefinite case. The valid range for this real option is 0 < spral_u ≤ 0.5 and its default value is 10-08.

▸ spral_umax: Maximum Pivoting Threshold

See SPRAL documentation. The valid range for this real option is 0 < spral_umax ≤ 0.5 and its default value is 0.0001.

▸ spral_use_gpu: Specifies whether or not graphics processing units (GPUs) are used by the SPRAL linear solver if present.

The default value for this string option is "yes".

Possible values: yes, no

WSMP Linear Solver

▸ wsmp_num_threads: Number of threads to be used in WSMP

The valid range for this integer option is unrestricted and its default value is 1.

▸ wsmp_ordering_option: Determines how ordering is done in WSMP

This corresponds to the value of WSSMP's IPARM(16). The valid range for this integer option is -2 ≤ wsmp_ordering_option ≤ 3 and its default value is 1.

▸ wsmp_ordering_option2 (advanced): Determines how ordering is done in WSMP

This corresponds to the value of WSSMP's IPARM(20). The valid range for this integer option is 0 ≤ wsmp_ordering_option2 ≤ 3 and its default value is 1.

▸ wsmp_pivtol: Pivot tolerance for the linear solver WSMP.

A smaller number pivots for sparsity, a larger number pivots for stability. The valid range for this real option is 0 < wsmp_pivtol < 1 and its default value is 0.0001.

▸ wsmp_pivtolmax: Maximum pivot tolerance for the linear solver WSMP.

Ipopt may increase pivtol as high as pivtolmax to get a more accurate solution to the linear system. The valid range for this real option is 0 < wsmp_pivtolmax < 1 and its default value is 0.1.

▸ wsmp_scaling: Determines how the matrix is scaled by WSMP.

This corresponds to the value of WSSMP's IPARM(10). The valid range for this integer option is 0 ≤ wsmp_scaling ≤ 3 and its default value is 0.

▸ wsmp_singularity_threshold: WSMP's singularity threshold.

WSMP's DPARM(10) parameter. The smaller this value the less likely a matrix is declared singular. The valid range for this real option is 0 < wsmp_singularity_threshold < 1 and its default value is 10-18.

▸ wsmp_write_matrix_iteration (advanced): Iteration in which the matrices are written to files.

If non-negative, this option determines the iteration in which all matrices given to WSMP are written to files. The valid range for this integer option is -1 ≤ wsmp_write_matrix_iteration and its default value is -1.

▸ wsmp_skip_inertia_check (advanced): Whether to always pretend that inertia is correct.

Setting this option to "yes" essentially disables inertia check. This option makes the algorithm non-robust and easily fail, but it might give some insight into the necessity of inertia control. The default value for this string option is "no".

Possible values: yes, no

▸ wsmp_no_pivoting (advanced): Whether to use the static pivoting option of WSMP.

Setting this option to "yes" means that WSMP is instructed not to do pivoting. This works only in certain situations (when the Hessian block is known to be positive definite or when we are using L-BFGS). It can also lead to a lot of fill-in. The default value for this string option is "no".

Possible values:

  • no: use the regular version
  • yes: use static pivoting

▸ wsmp_max_iter (advanced): Maximal number of iterations in iterative WISMP

The valid range for this integer option is 1 ≤ wsmp_max_iter and its default value is 1000.

▸ wsmp_inexact_droptol (advanced): Drop tolerance for inexact factorization preconditioner in WISMP.

DPARM(14) in WISMP The valid range for this real option is 0 ≤ wsmp_inexact_droptol and its default value is 0.

▸ wsmp_inexact_fillin_limit (advanced): Fill-in limit for inexact factorization preconditioner in WISMP.

DPARM(15) in WISMP The valid range for this real option is 0 ≤ wsmp_inexact_fillin_limit and its default value is 0.

Mumps Linear Solver

▸ mumps_print_level: Debug printing level for the linear solver MUMPS

0: no printing; 1: Error messages only; 2: Error, warning, and main statistic messages; 3: Error and warning messages and terse diagnostics; >=4: All information. The valid range for this integer option is 0 ≤ mumps_print_level and its default value is 0.

▸ mumps_pivtol: Pivot tolerance for the linear solver MUMPS.

A smaller number pivots for sparsity, a larger number pivots for stability. The valid range for this real option is 0 ≤ mumps_pivtol ≤ 1 and its default value is 10-06.

▸ mumps_pivtolmax: Maximum pivot tolerance for the linear solver MUMPS.

Ipopt may increase pivtol as high as pivtolmax to get a more accurate solution to the linear system. The valid range for this real option is 0 ≤ mumps_pivtolmax ≤ 1 and its default value is 0.1.

▸ mumps_mem_percent: Percentage increase in the estimated working space for MUMPS.

When significant extra fill-in is caused by numerical pivoting, larger values of mumps_mem_percent may help use the workspace more efficiently. On the other hand, if memory requirement are too large at the very beginning of the optimization, choosing a much smaller value for this option, such as 5, might reduce memory requirements. The valid range for this integer option is 0 ≤ mumps_mem_percent and its default value is 1000.

▸ mumps_permuting_scaling: Controls permuting and scaling in MUMPS

This is ICNTL(6) in MUMPS. The valid range for this integer option is 0 ≤ mumps_permuting_scaling ≤ 7 and its default value is 7.

▸ mumps_pivot_order: Controls pivot order in MUMPS

This is ICNTL(7) in MUMPS. The valid range for this integer option is 0 ≤ mumps_pivot_order ≤ 7 and its default value is 7.

▸ mumps_scaling: Controls scaling in MUMPS

This is ICNTL(8) in MUMPS. The valid range for this integer option is -2 ≤ mumps_scaling ≤ 77 and its default value is 77.

▸ mumps_dep_tol (advanced): Threshold to consider a pivot at zero in detection of linearly dependent constraints with MUMPS.

This is CNTL(3) in MUMPS. The valid range for this real option is unrestricted and its default value is 0.

MA28 Linear Solver

▸ ma28_pivtol: Pivot tolerance for linear solver MA28.

The valid range for this real option is 0 < ma28_pivtol ≤ 1 and its default value is 0.01.