NAG CPP Interface nagcpp::opt::handle_solve_bounds_foas (e04kf)
Note:this function usesoptional parametersto define choices in the problem specification and in the details of the algorithm. If you wish to use default settings for all of the optional parameters, you need only read Sections 1 to 10 of this document. If, however, you wish to reset some or all of the settings please refer to Section 11 for a detailed description of the algorithm and to Section 12 for a detailed description of the specification of the optional parameters.
handle_solve_bounds_foas is a solver from the NAG optimization modelling suite for bound-constrained large-scale Nonlinear Programming (NLP) problems. It is a first-order active-set method (FOAS) that has low memory requirements and thus is suitable for very large-scale problems.
handle_solve_bounds_foas solves large-scale bound-constrained nonlinear optimization problems of the form
(1)
where is the number of decision variables, , , and are -dimensional vectors, and the nonlinear objective function is assumed to be sufficiently smooth.
The solver is a first-order method (i.e., uses only first derivatives) that has very low memory requirements and, therefore, is suitable for very large bound-constrained problems. It is based on an active-set method coupled to a nonmonotone projected gradient algorithm (NPG), nonlinear conjugate gradient method (CG) and its limited-memory variant (LCG). The active-set method is based on alternating between both solvers, the NPG step handles the box constraints and identifies a suitable search space while the CG step explores it for a solution.
For a detailed description of the algorithm see Section 11. Under standard assumptions on the problem (smoothness of the first derivative of the objective) the algorithm converges to a local solution or to a critical point.
handle_solve_bounds_foas serves as a solver for problems stored as a handle. The handle points to an internal data structure which defines the problem and serves as a means of communication for functions in the NAG optimization modelling suite. First, the problem handle is initialized by calling handle_init. Then some of the functions handle_set_linobj, handle_set_quadobj, handle_set_nlnobj and handle_set_simplebounds may be called to formulate the objective and to define (simple) box constraints for the problem. Once the problem is fully described, the handle may be passed to the solver handle_solve_bounds_foas. When the handle is no longer needed, handle_free should be called to destroy it and deallocate the memory held within. See Section 3.1 in the E04 Chapter Introduction for more details about the NAG optimization modelling suite.
The algorithm behaviour can be modified by various optional parameters (see Section 12) which can be set by handle_opt_set and e04zpf (no CPP interface) anytime between the initialization of the handle by handle_init and a call to the solver. Once the solver has finished, options may be modified for the next solve. The solver may be called repeatedly with various starting points and/or optional parameters. Option getter handle_opt_get can be called to retrieve the current value of any option.
The optional parameter Task may be used to switch the problem to maximization, while FOAS Estimate Derivatives can be used to complete missing elements from the gradient. Optional parameter Verify Derivatives may help verify the correctness of the gradient vector before starting to solve a problem.
Several options may have significant impact on the performance of the solver. Even if the defaults were chosen to suit the majority of problems, it is recommended that you experiment in order to find the most suitable set of options for a particular problem, see Sections 11 and 12 for further details.
4References
Dai Y-H and Kou C-X (2013) A Nonlinear Conjugate Gradient Algorithm with an Optimal Property and an Improved Wolfe Line Search SIAM J. Optim.23(1) 296–320
Gill P E and Leonard M W (2003) Limited-Memory Reduced-Hessian Methods for Large-Scale Unconstrained Optimization SIAM J. Optim.14(2) 380–401
Hager W W and Zhang H (2005) A New Conjugate Gradient Method with Guaranteed Descent and an Efficient Line Search SIAM J. Optim.16(1) 170–192
Hager W W and Zhang H (2006a) Algorithm 851: CG DESCENT, a Conjugate Gradient Method with Guaranteed Descent ACM Trans. Math. Software32(1) 113–137
Hager W W and Zhang H (2006b) A New Active Set Algorithm for Box Constrained Optimization SIAM J. Optim.17(2) 525–557
Hager W W and Zhang H (2013) The Limited Memory Conjugate Gradient Method SIAM J. Optim.23(4) 2150–2168
Nocedal J and Wright S J (2006) Numerical Optimization (2nd Edition) Springer Series in Operations Research, Springer, New York
Communication structure.
An object of either the derived class CommE04RA or its base class NoneCopyableComm can be supplied.
It is recommended that the derived class is used. If the base class is supplied it must
first be initialized via a call to opt::handle_init (e04ra).
2: – void functionFunction
objfun must calculate the value of the nonlinear objective function at a specified point . If there is no nonlinear objective (e.g., handle_set_linobj and handle_set_quadobj was called to define a linear or quadratic objective function), objfun will never be called by handle_solve_bounds_foas and may be the dummy function bounds_dummy_objfun (included in the NAG Library.)
void function objfun(const utility::array1D<double,data_handling::ArgIntent::IntentIN> &x, double &fx, types::f77_integer &inform)
1: – double arrayInput
On entry: the vector of variable values at which the objective function is to be evaluated.
In some cases, it is known beforehand that the evaluations of the objective function and its gradient are required at the same point , in such cases, . This may help to optimize your code in order to avoid recalculations of common quantities when evaluating both the objective function and gradient; the objective function is always evaluated before the objective gradient. This notification parameter may be safely ignored if such optimization is not required.
On exit: may be used to indicate that the function cannot be evaluated at the requested point by setting . Returning NaN or in fx has the same effect. The algorithm will try to recover if the objective cannot be evaluated; if recovery is not possible it will stop with .
On entry: , the current number of decision variables in the model.
3: – void functionFunction
objgrd must calculate the values of the nonlinear objective function gradient at a specified point . Every call to objgrd is preceded by a call to objfun at the same point, if this is known in advance, both functions will be notified via . If there is no nonlinear objective (e.g., handle_set_linobj and handle_set_quadobj was called to define a linear or quadratic objective function), objgrd will never be called by handle_solve_bounds_foas and objgrd may be the dummy function bounds_dummy_objgrd (included in the NAG Library.)
If the optional parameter , then after returning from objgrd the gradient vector is checked for missing entries which you have not supplied. Missing entries are estimated using the finite difference method, see optional parameter FOAS Estimate Derivatives description for more details.
void function objgrd(const utility::array1D<double,data_handling::ArgIntent::IntentIN> &x, utility::array1D<double,data_handling::ArgIntent::IntentINOUT> &fdx, types::f77_integer &inform)
1: – double arrayInput
On entry: the vector of variable values at which the objective function gradient is to be evaluated.
2: – double arrayInput/Output
On entry: the elements should only be assigned and not referenced.
On exit: the values of the nonzero elements in the sparse gradient vector of the objective function, in the order specified by idxfd in a previous call to handle_set_nlnobj. will store the gradient element
, where .
If , then the previous call to objfun was also made at the same point with . This may help to optimize your code in order to avoid recalculations of common quantities when evaluating both the objective function and gradient. This notification parameter may be safely ignored if such optimization is not required.
On exit: may be used to inform that the gradient cannot be evaluated at the requested point by setting . Returning NaN or in any element of fdx has the same effect. The algorithm will try to recover if the gradient cannot be evaluated; if recovery is not possible it will stop with .
On entry: the number of nonzero elements in the sparse gradient vector of the objective function, as was set in a previous call to handle_set_nlnobj.
4: – void functionFunction
monit is provided to enable you to monitor the progress of the optimization and optionally to terminate the solver early if necessary. It is invoked at the end of every th iteration where is given by the FOAS Monitor Frequency (the default is , monit is not called).
monit may be the dummy function bounds_dummy_monit (included in the NAG Library).
On entry: , the current number of decision variables in the model.
5: – double arrayInput/Output
On entry: , the initial estimates of the variables, .
On exit: the final values of the variables, .
6: – double arrayOutput
On exit: error measures and various indicators at the end of the final iteration as given in the table below:
Objective function value .
Norm of inactive gradient, the objective gradient over the current search space. If the problem is unconstrained, then elements – coincide. See Section 11.4 for details.
Progress score, a positive value that measures the progress of the solver. A low score close to zero indicates poor progress, see (8) in Section 11.4.
–
Reserved for future use.
7: – double arrayOutput
On exit: solver statistics at the end of the final iteration as given in the table below:
Number of function evaluations performed by NPG, see Section 11.2.
Number of gradient evaluations performed by NPG.
Number of function evaluations performed by CG, see Section 11.3.
Number of gradient evaluations performed by CG.
Number of function evaluations performed by LCG.
Number of gradient evaluations performed by LCG.
Number of function evaluations used by the finite difference method to estimate missing components of the gradient.
Number of iterations.
Total time spent in the solver (including user-supplied function calls).
Total time spent in user-supplied objective function.
Total time spent in user-supplied objective gradient.
–
Reserved for future use.
8: – OptionalE04KFInput/Output
Optional parameter container, derived from Optional.
5.1Additional Quantities
1:
, the current number of decision variables in the model.
6Exceptions and Warnings
Errors or warnings detected by the function:
Note: in some cases handle_solve_bounds_foas may return useful information.
All errors and warnings have an associated numeric error code field, errorid, stored either as a member of the thrown exception object (see errorid), or as a member of
opt.ifail, depending on how errors
and warnings are being handled (see Error Handling for more details).
Please refer to Section 11.4 and the description of the particular options in Section 12.
8Parallelism and Performance
Please see the description for the underlying computational routine in this section of the
FL Interface documentation.
9Further Comments
9.1Description of the Printed Output
The solver can print information to give an overview of the problem and of the progress of the computation. The output may be sent to two independent streams (files) which are set by optional parameters Print File and Monitoring File. Optional parameters Print Level, Monitoring Level, Print Solution and Print Options determine the exposed level of detail. This allows, for example, a detailed log file to be generated while the condensed information is displayed on the screen.
By default (, ), the following sections are printed to the standard output:
Header
Optional parameters list (if )
Problem statistics
Verification of derivatives (if )
Iteration log
Summary
Solution (if )
Header
The header is a message indicating the start of the solver. It should look like:
-------------------------------------------------------------------------------
E04KF, First-order method for bound-constrained problems
-------------------------------------------------------------------------------
Optional parameters list
The list shows all options of the solver, each displayed on one line. The output contains the option name, its current value and an indicator for how it was set. The options unchanged from the default setting are noted by ‘d’, options you set are noted by ‘U’, and options reset by the solver are noted by ‘S’. Note that the output format is compatible with the file format expected by e04zpf (no CPP interface). The output might look as follows:
Begin of Options
Print File = 6 * d
Print Level = 2 * U
Print Options = Yes * d
Print Solution = All * U
Monitoring File = 9 * U
Monitoring Level = 3 * U
Foas Monitor Frequency = 0 * d
Foas Print Frequency = 5 * U
End of Options
Problem statistics
If , statistics on the problem is printed, for example:
Problem Statistics
No of variables 8 (+1 disabled, +2 fixed)
free (unconstrained) 3
bounded 2
Objective function Nonlinear
Verification of derivatives
If , then the user-supplied nonlinear objective gradient is verified.
If , then it will only check those entries related to the actual search space and compare
to a finite-difference approximation, it might look as follows:
Derivative checker
idx test fdx approx rel error
3 Fail 3.56E+02 3.57E+02 2.80E-03
4 Ok 1.80E+02 1.80E+02 6.05E-09
5 Ok 0.00E+00 0.00E+00 0.00E+00
On the other hand, if , it will print one line for each gradient entry and the output should be similar to:
If , the solver prints the status of every th iteration, specified using the optional parameter , with default value of . It will also print status information regarding the switch between NPG, CG and LCG.
It will also print status information regarding the switch between NPG, CG and LCG.
If , the output shows the iteration number ( represents the starting point), the current objective value, and optimality measures (norm of inactive gradient and the norm of the projected direction). Note that all these values for the last iteration are also available in rinfo. The output might look as follows:
If , the solver also prints for each iteration the progress score, iteration type, size or type of performed step, accumulated number of objective function and gradient calls. The output takes the following form:
If , each iteration produces more information that expands over several lines. This additional information can contain:
The sizes of gradient in full space and subspace;
The quadratic model prediction error and counter;
The amount of search direction restarts;
The extreme eigenvalues of the basis matrix for the subspace;
Information and size of the active-set;
Whether the orthogonal property holds;
The action to take for the next iteration (switch solver);
The search space size;
The amount of memory vectors used.
The output might look as follows:
----- Iteration details (CG) ---------
Size of gradient 2.64E+01
Size of subspace gradient 2.64E+01
Eigenvalues R range 6.80E-01 6.80E-01
Orthogonal property lost
Action Switch to LCG
----------------------------------------
----- LCG solver details -------------
Search space has 2 element(s)
Memory vectors 2 ( 2)
----------------------------------------
Summary
Once the solver finishes, a detailed summary is produced:
-------------------------------------------------------------------------------
Status: converged, an optimal solution was found
-------------------------------------------------------------------------------
Value of the objective 3.55353E-14
Norm of inactive gradient 2.53812E-07
Norm of projected direction 1.68481E-07
Iterations 32
Function evaluations 80
FD func. evaluations 5
Gradient evaluations 48
NPG function calls 0
NPG gradient calls 0
CG function calls 11
CG gradient calls 9
LCG function calls 69
LCG gradient calls 39
-------------------------------------------------------------------------------
It starts with a status line of the overall result, followed by the final objective value as well as the gradient (unconstrained problem) or inactive gradient and projected direction (constrained problem) norms. If or , it will additionally report iteration count, objective function and gradient call information.
Optionally, if ,
the timings for the user-supplied objective are displayed. It might look as follows:
Timing
Total time spent 12.54 sec
Total time in obj function 3.01 sec ( 24.0%)
Total time in obj gradient 5.28 sec ( 42.1%)
Solution
If ,
the values of the primal variables are printed, furthermore if the problem is
constrained, also the dual variables
(see Lagrangian Multipliers) and their bounds are reported.
It might look as follows:
This section contains the description of the underlying algorithms used in handle_solve_bounds_foas, a first-order active-set (FOAS) method with very low memory requirements suitable for large-scale bound-constrained nonlinear optimization problems. For further details, see Hager and Zhang (2006b) and references therein.
11.1Active-Set Method and Algorithm Outline
Active-set is a useful method to tackle problems with bound constraints. It derives its name from the partitioning of the search space: elements of that are fixed at a bound ( or ), are said to be active, while the rest of the elements of are said to be inactive. The goal of this method is to estimate which variables will be active at the solution point while optimizing over the inactive components.
handle_solve_bounds_foas consists of a constrained solver, an unconstrained solver and a set of rules to switch between them. The constrained solver (nonmonotone projected gradient, NPG) has two purposes: while solving (1) it tries to guess which components of are active at a solution. Once a reasonable guess is available, control is transferred to an unconstrained solver (conjugate gradient method, CG, and its limited-memory variant, LCG) that operates only over the inactive elements of but convergence is much faster that NPG.
The following is an outline of the implemented algorithm.
FOAS Algorithm
(i)Make initial point feasible.
(ii)Loop until stopping criteria are satisfied
(a)Constrained problem (NPG): start solving constrained problem (1) and try to identify a suitable inactive search space; if found, then go to (ii)(b).
(b)Unconstrained subproblem (CG): solve unconstrained problem (4) over the elements of marked inactive. If elements of become newly active or it is deemed that some active elements should be explored, then go back to (ii)(a).
11.2Constrained Subproblem (NPG)
By setting , the constrained problem (1) can be stated as
and can be solved using NPG which is an iterative method of the form
(2)
with step size and projection direction .
The projected direction, , is obtained by a projection of the objective gradient onto :
(3)
with the Euclidean projection operator over the box . Note that if , then and the method reduces to nonmonotone steepest descent.
The step size is chosen to guarantee global convergence, i.e., guarantee sufficient progress at each iteration using the nonmonotone Armijo condition
where is a reference objective function value for iteration , possibly . The step size is estimated using a nonmonotone backtracking technique. As soon as a suitable inactive set is identified (see Hager and Zhang (2006b)), the control is transferred to CG (LCG) to accelerate the convergence.
11.3Unconstrained Subproblem (CG)
The exploration of the inactive search space is performed using the CG method which is an iterative method to solve
(4)
and each iterate is updated using the expression
(5)
where is a direction of descent that combines the current gradient and a scaled version of the previous direction, , with ,
The step size is chosen to ensure global convergence and is achieved by satisfying the weak Wolfe conditions
with and . The line search performed by handle_solve_bounds_foas will always satisfy either/or both stated conditions. The line search builds a series of nested intervals that contains a point satisfying the above sufficient decrease requirements.
It is important to note that when , then the used gradient is actually the inactive gradient,
it is the gradient, , but with zeros in the same positions where the elements of
are marked as active.
The performance of the CG method can degrade when orthogonality is lost between consecutive search directions. Therefore, handle_solve_bounds_foas uses a limited number of previous search directions to detect and restore orthogonality. When the current search direction is no longer orthogonal, it is discarded and a quasi-Newton variant known as limited-memory CG (LCG) is used to build a new search direction orthogonal to the explored subspace.
The available memory is used to build an approximation of the Hessian and the new search direction is estimated using
The quasi-Newton Hessian approximation , is updated at each iteration using the BFGS update formula, see Nocedal and Wright (2006).
Experiments in literature indicate that an adequate range for the quasi-Newton (amount of vectors used to build ) lies between and . The default value for the maximum amount of vectors used in handle_solve_bounds_foas is and can be changed via the FOAS Memory.
11.4Stopping Criteria
A point is considered a solution when there are no feasible descent directions to use. Under this circumstance the function will stop, declaring to have found a solution.
If the problem is unconstrained, the function declares to have found a solution and stops when the first-order optimality condition is met within the defined absolute or relative tolerances (, ),
(6)
where can designate either the Euclidean or Infinity (default) norms.
On the other hand, if the problem is constrained, the function characterizes to have found a solution when the first-order condition is satisfied for the projected direction, , to the defined tolerances,
(7)
In the unconstrained case we have and both stopping criteria (6) and (7) coincide.
The stopping tolerances can be changed using the optional parameters FOAS Stop Tolerance and FOAS Rel Stop Tolerance, while the norm used can be set by using the optional parameter FOAS Tolerance Norm, see Section 12 for details. If these parameters are set too small in relation to the complexity and scaling of the problem, the function can terminate with , or .
Progress of the solver towards a solution is monitored using two criteria.
The first one evaluates how poor
the actual step has been and is estimated via
(8)
where is given by the line search. If the above relation is consistently satisfied, then the solver stops with .
The tolerance is set using the optional parameter FOAS Progress Tolerance. The second criteria monitors the rate of convergence using
(9)
As with the first criteria, if the previous relation is deemed permanent, then the solver stops with . The tolerance can be changed using the optional parameter FOAS Slow Tolerance.
11.5A Note About Lagrangian Multipliers
It is often useful to have access to the Lagrangian multipliers (dual variables) associated with the constraints if there are any defined. In the case where only simple bounds are present, the multipliers directly relate to the values of the gradient at the solution. The multipliers of the active bounds are the absolute values of the associated elements of the gradient. The multipliers of the inactive bounds are always zero.
The multipliers based on the final gradient value (or its finite-difference approximation) can be retrieved by calling e04rxf (no CPP interface) with the command string . The format is the same as for other functions, see Section 3.1 in handle_solve_pennon (no CPP interface in the current release). Note that if the problem has not fully converged, the provided approximation might be quite crude.
12Optional Parameters
Several optional parameters in handle_solve_bounds_foas define choices in the problem specification or the algorithm logic. In order to reduce the number of formal arguments of handle_solve_bounds_foas these optional parameters have associated default values that are appropriate for most problems. Therefore, you need only specify those optional parameters whose values are to be different from their default values.
The remainder of this section can be skipped if you wish to use the default values for all optional parameters.
The optional parameters can be changed by calling handle_opt_set anytime between the initialization of the handle and the call to the solver. Modification of the optional parameters during intermediate monitoring steps is not allowed. Once the solver finishes, the optional parameters can be altered again for the next solve.
For each option, we give a summary line, a description of the optional parameter and details of constraints.
The summary line contains:
the keywords;
a parameter value,
where the letters , and denote options that take character, integer and real values respectively.
the default value, where the symbol is a generic notation for machine precision (see precision).
All options accept the value to return single options to their default states.
Keywords and character values are case and white space insensitive.
Defaults
This special keyword may be used to reset all optional parameters to their default values. Any value given with this keyword will be ignored.
FOAS Estimate Derivatives
Default
This option indicates whether to check for and estimate missing entries of the user-supplied gradient vector. Since the associated cost of estimating missing elements can be high, this option should only be used if strictly necessary. In general terms, if the gradient is not provided (in its entirety or for arbitrary points) potential degradation in the progress of the solver is to be expected. Depending on the complexity of the objective, the function may not achieve the desired optimality accuracy or even terminate with no possible further progress error , it is advisable to increase the values of FOAS Stop Tolerance and FOAS Rel Stop Tolerance when using this option.
Missing elements from the gradient vector are estimated by finite-differences using the perturbation interval specified by the optional parameter FOAS Finite Diff Interval.
If , the entries are not checked and all derivative elements need to be provided.
Constraint: or .
FOAS Finite Diff Interval
Default
Specifies the relative perturbation size used to estimate a derivative using the forward (or backward) finite-difference method. Setting the value too small or too big may lead handle_solve_bounds_foas to terminated with or .
Constraint: .
FOAS Iteration Limit
Default
This parameter sets the maximum number of iterations to be performed by handle_solve_bounds_foas. Setting the option too low might lead to .
Constraint: .
FOAS Memory
Default
This parameter specifies the maximum number of memory vectors to use in the LCG solver.
Constraint: .
FOAS Monitor Frequency
Default
This parameter specifies the frequency on which to call the monitor function monit.
If zero, the monitor function will not be called.
Constraint: .
FOAS Print Frequency
Default
This parameter specifies the frequency with which to print information regarding each iteration to Print File and/or Monitoring File. By default, it will print information of every iteration.
Constraint: .
FOAS Progress Tolerance
Default
Specifies the tolerance for (see (8)) for which the function characterises a poor rate of progress given that it deems to be far from a solution. If this behaviour is persistent, then the function asserts that no substantial further progress can be achieved and the process is terminated with . Setting a high tolerance can lead to misinterpret reasonable progress for unsatisfactory progress or even issue a premature stop, see (8) in Section 11.4.
Constraint: .
FOAS Rel Stop Tolerance
Default
This parameter sets the value of which specifies the relative tolerance for the convergence measures in the stopping criteria, see (6) and (7) in Section 11.4.
Constraint: .
FOAS Restart Factor
Default
This factor specifies the frequency with which the CG/LCG directions are replaced by the steepest descent direction (). Setting the value too small can potentially slow the convergence speed.
Constraint: .
FOAS Slow Tolerance
Default
Specifies the tolerance for (see (9)) for which the function characterises a slow rate of convergence. If this behaviour is deemed permanent, then the function asserts that no substantial improvement can be achieved and the process is terminated with . Setting a large tolerance can lead to incorrectly identifying a suboptimal solution, see (9) in Section 11.4.
Constraint: .
FOAS Stop Tolerance
Default
This parameter sets the value of which specifies the tolerance for the convergence measures in the stopping criteria, see (6) and (7) in Section 11.4.
Constraint: .
FOAS Tolerance Norm
Default
This parameter specifies the norm used to measure some stopping metrics, such as optimality tolerances (see Section 11.4). It is possible to choose between 2-norm and ∞-norm. Solving problems using ∞-norm generally has lower computational costs than those based on 2-norm.
Constraint: or .
Infinite Bound Size
Default
This defines the ‘infinite’ bound in the definition of the problem constraints. Any upper bound greater than or equal to will be regarded as (and similarly any lower bound less than or equal to will be regarded as ). Note that a modification of this optional parameter does not influence constraints which have already been defined; only the constraints formulated after the change will be affected.
Constraint: .
Monitoring File
Default
If , the
unit number
for the secondary (monitoring) output. If set to , no secondary output is provided. The following information is output to the unit:
–a listing of the optional parameters;
–problem statistics, the iteration log and the final status as set by Monitoring Level;
This parameter sets the amount of information detail that will be printed by the solver to the secondary output. The meaning of the levels is the same as Print Level.
Constraint: .
Print File
Default
If , the
unit number
for the primary output of the solver. If , the primary output is completely turned off independently of other settings. The default value is the advisory message unit number as defined by x04abf (no CPP interface) at the time of the optional parameter's initialization, e.g., at the initialization of the handle. The following information is output to the unit:
–a listing of optional parameters if set by Print Options;
–problem statistics, the iteration log and the final status from the solver as set by Print Level;
This parameter defines how detailed information should be printed by the solver to the primary output.
Output
No output from the solver
Only the final status and the objective value
Problem statistics, one line per iteration showing the progress of the solution with respect to the convergence measures, final status and statistics
As level but each iteration line is longer and includes step length and progress measure
As level but further details of each iteration are presented
Constraint: .
Print Options
Default
If , a listing of optional parameters will be printed to the primary output.
Constraint: or .
Print Solution
Default
If , the final values of the solution vector are printed on the primary and secondary outputs.
Constraint: or .
Stats Time
Default
This parameter allows you to turn on timings of various parts of the algorithm to give a better overview of where most of the time is spent. This might be helpful for a choice of different solving approaches. It is possible to choose between CPU and wall clock time. Choice is equivalent to .
Constraint: , , or .
Task
Default
This parameter specifies the required direction of the optimization. If , the objective function (if set) is ignored and the algorithm stops as soon as a feasible point is found. If no objective function is set, Task reverts to automatically.
Constraint: , or .
Time Limit
Default
This parameter specifies a limit in seconds that the solver can use to solve one problem. If during the convergence check this limit is exceeded, the solver will terminate with error message.
Constraint: .
Verify Derivatives
Default
This parameter specifies whether the function should perform numerical checks on the consistency of the user-supplied gradient function. If any discrepancies are found, is returned.
It is recommended that such checks are enabled when first developing the formulation of the problem, however, the verification process results in a significant increase of the number of the function evaluations and thus it shouldn't be used in production code.