NAG CL Interface
e04jdc (handle_​solve_​dfno)

Note: this function uses optional parameters to 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.
Settings help

CL Name Style:


1 Purpose

e04jdc is a forward communication Derivative-free Optimization (DFO) solver from the NAG optimization modelling suite (DFNO) for small to medium-scale nonlinear problems with bound constraints.

2 Specification

#include <nag.h>
void  e04jdc (void *handle,
void (*objfun)(Integer nvar, const double x[], double *fx, Integer *inform, Nag_Comm *comm),
void (*monit)(Integer nvar, const double x[], Integer *inform, const double rinfo[], const double stats[], Nag_Comm *comm),
Integer nvar, double x[], double rinfo[], double stats[], Nag_Comm *comm, NagError *fail)
The function may be called by the names: e04jdc or nag_opt_handle_solve_dfno.

3 Description

e04jdc is aimed at minimizing a nonlinear objective function subject to bound constraints:
minimize xn f (x) subject to lx x ux .  
Here f is a smooth nonlinear function and lx and ux are n-dimensional vectors defining bounds on the variables.
e04jdc serves as a solver for compatible 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. To define a compatible problem handle, you must call e04rac followed by e04rgc to initialize it and optionally call e04rhc to define bounds on the variables. If e04rhc is not called, all the variables will be considered free by the solver. It should be noted that e04jdc always assumes that the gradient of the objective is dense, therefore, defining a sparse structure for the residuals in the call to e04rgc will have no effect. See Section 4.1 in the E04 Chapter Introduction for more details about the NAG optimization modelling suite.
The solver allows fixing variables with the definition of the bounds. However, the following constraint must be met in order to be able to call the solver:
The solver is based on a derivative-free trust region framework. This type of method is well suited for small to medium-scale problems (around 100 variables) for which the derivatives are unavailable or not easy to compute, and/or for which the function evaluations are expensive or noisy. For a detailed description of the algorithm see Section 11.
The algorithm behaviour and solver strategy can be modified by various optional parameters (see Section 12) which can be set by e04zmc and e04zpc at any time between the initialization of the handle by e04rac and a call to the solver. The optional parameters' names specific for this solver start either with the prefix DFO (Derivative-free Optimization) or DFNO (Derivative-free Nonlinear Optimization). The default values for these optional parameters are chosen to work well in the general case, but it is recommended you tune them to your particular problem. In particular, if the objective function is known to be noisy, it is highly recommended to set the optional parameter DFO Noisy Problem to YES. 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.
The underlying algorithm implemented for e04jdc is the same as the one used by e04jec. e04jdc serves as a forward communication interface to the derivative-free solver for nonlinear objective functions.

4 References

Cartis C, Fiala J, Marteau B and Roberts L (2018) Improving the Flexibility and Robustness of Model-Based Derivative-Free Optimization Solvers Technical Report University of Oxford
Conn A R, Scheinberg K and Vicente L N (2009) Introduction to Derivative-Free Optimization, vol. 8 of MPS-SIAM Series on Optimization MPS/SIAM, Philadelphia
Powell M J D (2009) The BOBYQA algorithm for bound constrained optimization without derivatives Report DAMTP 2009/NA06 University of Cambridge https://www.damtp.cam.ac.uk/user/na/NA_papers/NA2009_06.pdf

5 Arguments

1: handle void * Input
On entry: the handle to the problem. It needs to be initialized (e.g., by e04rac) and to hold a problem formulation compatible with e04jdc. It must not be changed between calls to the NAG optimization modelling suite.
2: objfun function, supplied by the user External Function
objfun calculates the value of the objective function f(x) at a specified point x. If there is no nonlinear objective (e.g., e04rec or e04rfc was called to define a linear or quadratic objective function), objfun will never be called by e04jdc and may be NULLFN.
The specification of objfun is:
void  objfun (Integer nvar, const double x[], double *fx, Integer *inform, Nag_Comm *comm)
1: nvar Integer Input
On entry: n, the current number of decision variables x in the model.
2: x[nvar] const double Input
On entry: x, the vector of variable values at which the objective function is to be evaluated.
3: fx double * Output
On exit: the value of the objective function at x.
4: inform Integer * Input/Output
On entry: a non-negative value.
On exit: may be used to indicate that the requested objective value could not be computed. Specifically, it can be set to a negative value:
inform=−1
The solver will attempt a rescue procedure and request an alternative point. If the rescue procedure fails, the solver will exit with fail.code= NE_RESCUE_FAILED.
inform=−2
The solver will cleanly exit with fail.code= NE_USER_STOP and return the best available point as well as the solve statistics.
5: comm Nag_Comm *
Pointer to structure of type Nag_Comm; the following members are relevant to objfun.
userdouble *
iuserInteger *
pPointer 
The type Pointer will be void *. Before calling e04jdc you may allocate memory and initialize these pointers with various quantities for use by objfun when called from e04jdc (see Section 3.1.1 in the Introduction to the NAG Library CL Interface).
Note: objfun should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by e04jdc. If your code inadvertently does return any NaNs or infinities, e04jdc is likely to produce unexpected results.
3: monit function, supplied by the user External Function
monit is provided to enable you to monitor the progress of the optimization. It is invoked at the end of every ith iteration where i is given by the DFO Monitor Frequency (the default is 0, monit is not called).
If no monitoring is required, monit may be specified as NULLFN.
The specification of monit is:
void  monit (Integer nvar, const double x[], Integer *inform, const double rinfo[], const double stats[], Nag_Comm *comm)
1: nvar Integer Input
On entry: n, the current number of decision variables x in the model.
2: x[nvar] const double Input
On entry: x, the vector of decision variables at the current iteration.
3: inform Integer * Input/Output
On entry: a non-negative value.
On exit: may be used to request the solver to stop immediately. Specifically, if inform<0, then the solver will terminate immediately with fail.code= NE_USER_STOP. Otherwise, the solver will proceed normally.
4: rinfo[100] const double Input
On entry: error measures and various indicators at the end of the current iteration as described in the main argument rinfo.
5: stats[100] const double Input
On entry: solver statistics at monitoring steps or at the end of the current iteration (the values are as described in the main argument stats).
6: comm Nag_Comm *
Pointer to structure of type Nag_Comm; the following members are relevant to monit.
userdouble *
iuserInteger *
pPointer 
The type Pointer will be void *. Before calling e04jdc you may allocate memory and initialize these pointers with various quantities for use by monit when called from e04jdc (see Section 3.1.1 in the Introduction to the NAG Library CL Interface).
4: nvar Integer Input
On entry: n, the current number of decision variables x in the model.
5: x[nvar] double Input/Output
On entry: x0, the initial estimates of the variables, x.
On exit: the final values of the variables, x.
6: rinfo[100] double Output
On exit: optimal objective value and various indicators at monitoring steps or at the end of the final iteration. The measures are given in the table below:
0 Objective function value f(x).
1 ρ, the current lower bound of the trust region.
2 Δ, the current size of the trust region.
3 The number of interpolation points used by the solver.
4-99 Reserved for future use.
7: stats[100] double Output
On exit: solver statistics at monitoring steps or at the end of the final iteration as given in the table below:
0 Number of calls to the objective function.
1 Total time spent in the solver (including time spent evaluating the objective).
2 Total time spent evaluating the objective function.
3 Number of steps.
4-99 Reserved for future use.
8: comm Nag_Comm *
The NAG communication argument (see Section 3.1.1 in the Introduction to the NAG Library CL Interface).
9: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_FAILED_START
The solver failed at the model building phase and the maximum number of restarts was reached. Check the specification of your objective and whether it needs rescaling. Try a different initial x.
NE_HANDLE
The supplied handle does not define a valid handle to the data structure for the NAG optimization modelling suite. It has not been properly initialized or it has been corrupted.
NE_INT
The number of initial interpolation points is different from the total set by DFO Number Interp Points.
Growing the interpolation set is not supported for this solver.
There were nr=value unequal bounds and the optional parameter DFO Number Interp Points npt=value.
Constraint: nr+1npt(nr+1)×(nr+2)2 .
Use e04zmc to set compatible option values.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
See Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
NE_MAYBE_UNBOUNDED
The problem seems to be unbounded.
The unboundedness detection heuristic can be turned off with the option DFNO Detect Unbounded.
NE_NO_IMPROVEMENT
No progress, the solver was stopped after value consecutive slow steps.
Use the optional parameter DFO Maximum Slow Steps to modify the maximum number of slow steps accepted.
The solver stopped after 5×DFO Maximum Slow Steps consecutive slow steps and a trust region above the tolerance set by DFO Trust Region Slow Tol.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library CL Interface for further information.
NE_NULL_ARGUMENT
The problem requires the objfun values. Please provide a proper objfun function.
NE_PHASE
The problem is already being solved.
NE_REAL_2
Inconsistent optional parameters DFO Trust Region Tolerance ρend and DFO Trust Region Slow Tol ρtol.
Constraint: ρend<ρtol.
Use e04zmc to set compatible option values.
Inconsistent optional parameters DFO Trust Region Tolerance ρend and DFO Starting Trust Region ρbeg.
Constraint: ρend<ρbeg.
Use e04zmc to set compatible option values.
Optional parameter DFO Starting Trust Region ρbeg=value, lx(i)=value, ux(i)=value and i=value.
Constraint: if lx(i)ux(i) in coordinate i, then ux(i)-lx(i)2×ρbeg.
Use e04zmc to set compatible option values.
NE_REF_MATCH
On entry, nvar=value, expected value=value.
Constraint: nvar must match the current number of variables of the model in the handle.
NE_RESCUE_FAILED
Rescue failed: the trust region could not be reduced further after some function evaluation could not be provided. Check the specification of your objective and whether it needs rescaling. Try a different initial x.
Some initial interpolation points could not be provided. Rescue cannot be attempted at this stage.
Check the specification of your objective and whether it needs rescaling. Try a different initial x.
NE_SETUP_ERROR
This solver does not support the model defined in the handle.
NE_TIME_LIMIT
The solver terminated after the maximum time allowed was exceeded.
Maximum number of seconds exceeded. Use optional parameter Time Limit to reset the limit.
NE_TOO_MANY_ITER
Maximum number of function evaluations exceeded.
NE_TR_STEP_FAILED
The predicted reduction in a trust region step was non-positive. Check the specification of your objective and whether it needs rescaling. Try a different initial x.
NE_USER_STOP
User requested termination after a call to the objective function. inform was set to a value lower than -1 within the user-supplied function objfun.
User requested termination during a monitoring step. inform was set to a value lower than 0 within the user-supplied function monit.
NW_NOT_CONVERGED
The problem was solved to an acceptable level after value consecutive slow iterations.
Use the optional parameter DFO Maximum Slow Steps to modify the maximum number of slow steps accepted.
The solver stopped after DFO Maximum Slow Steps consecutive slow steps and a trust region below the tolerance set by DFO Trust Region Slow Tol.

7 Accuracy

In a non-noisy case, the solver can declare convergence on two conditions.
  1. (i)The trust region radius is below the tolerance ρend set by the optional parameter DFO Trust Region Tolerance. When this condition is met, the corresponding solution will generally be at a distance smaller than 10×ρend of a local minimum.
  2. (ii)The objective value is lower than the optional parameter DFNO Objective Limit. This criterion is only used if you have set a limit.
If the objective is declared as noisy by the optional parameter DFO Noisy Problem, the solver declares convergence more conservatively. Instead of stopping with the first condition, the solver will trigger soft restarts (see Section 11 for more details) to ensure it did not get stuck in a flat region because of the noise. The solver then declares convergence when it is reasonably sure that it has reached a local minimum.
  1. (i)The total number of restarts is greater than the limit set by optional parameter DFO Max Soft Restarts and the trust region radius is below the tolerance.
  2. (ii)The number of consecutive restarts that did not manage to decrease the objective function is greater than the limit set by the optional parameter DFO Max Unsucc Soft Restarts.
In addition, this solver can stop if the convergence is deemed too slow on two conditions.
  1. (i)The trust region lower bound is lower than the value set by the optional parameter DFO Trust Region Slow Tol and the number of consecutive slow steps is greater than the value set by DFO Maximum Slow Steps.
  2. (ii)The trust region lower bound is greater than the value set by the optional parameter DFO Trust Region Slow Tol and the number of consecutive slow steps is greater than five times the value set by DFO Maximum Slow Steps.
The slow convergence detection can be deactivated by setting DFO Maximum Slow Steps to 0.

8 Parallelism and Performance

e04jdc is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
e04jdc makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this function. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

9.1 Description of the Printed Output

The solver can print information to give an overview of the problem and the progress of the computation. The output may be sent to two independent file ID which are set by optional parameters Print File and Monitoring File. Optional parameters Print Level, Print Options, Monitoring Level and Print Solution 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 (Print File=6, Print Level=2), four sections are printed to the standard output: a header, a list of options, an iteration log and a summary.
Header
The header contains statistics about the problem. It should look like:
 -------------------------------------------------------------------------------
    E04J(D|E), Derivative-free solver for bound constrained nonlinear functions
 -------------------------------------------------------------------------------
Optional parameters list
If Print Options=YES, a list of the optional parameters and their values is printed. The list shows all options of the solver, each displayed on one line. The line contains the option name, its current value and an indicator for how it was set. The options left at their defaults are noted by ‘d’ and the ones you set are noted by ‘U’. Note that the output format is compatible with the file format expected by e04zpc. The output looks as follows:
     Dfo Max Objective Calls       =                 500     * d
     Dfo Max Soft Restarts         =                   5     * d
     Dfo Max Unsucc Soft Restarts  =                   3     * d
     Dfo Maximum Slow Steps        =                  20     * d
     Dfo Noise Level               =         0.00000E+00     * d
Problem statistics
If Print Level2, statistics on the problem are printed, for example:
 Problem Statistics
   No of variables                  4
     free (unconstrained)           1
     bounded                        3
   Objective function       Nonlinear
Iteration log
If Print Level2, the solver will print a summary line for each step. An iteration is considered successful when it yields a decrease of the objective sufficiently close to the decrease predicted by the quadratic model. Each line shows the step number (step), the value of the objective function (obj), the radius of the trust region (rho), and the cumulative number of objective function evaluations (nf). The output looks as follows:
----------------------------------------
 step |    obj        rho    |    nf   |
----------------------------------------
    1 |  4.32E+00  1.00E-01  |     6   |
    2 |  4.18E+00  1.00E-02  |    12   |
    3 |  4.11E+00  1.00E-02  |    13   |
    4 |  3.85E+00  1.00E-02  |    14   |
Occasionally, the letter ‘s’ is printed at the end of the line indicating that the progress is considered slow by the slow convergence detection heuristic. After a certain number of consecutive slow steps, the solver is stopped. The limit on the number of slow iterations can be controlled by the optional parameter DFO Maximum Slow Steps and the tolerance on the trust region radius before the solver can be stopped is driven by DFO Trust Region Slow Tol.
Summary
Once the solver finishes, a summary is produced:
Status: Converged, small trust region size

Value of the objective                    1.17772E-15
Number of objective function evaluations          205
Number of steps                                   116
Note that only the iterations that decrease the objective function are printed in the iteration log, meaning that objective evaluations are likely to happen between the last printed iteration and the convergence. This leads to a small difference between the last line of the iteration log and the final summary in terms of the number of function evaluations.
Optionally, if Stats Time=YES, the timings are printed:
Timings
      Total time spent in the solver            0.056
      Time spent in the objective evaluation    0.012
Additionally, if Print Solution=YES, the solution is printed along with the bounds:
 Primal variables:
   idx   Lower bound       Value       Upper bound
     1   1.00000E+00    1.00000E+00    3.00000E+00
     2  -2.00000E+00   -8.52342E-02    0.00000E+00
     3       -inf       4.09304E-01         inf
     4   1.00000E+00    1.00000E+00    3.00000E+00

10 Example

In this example, we minimize this four-dimension function under some bound constraints:
f(x) = (x1+10x2) 2 +5 (x3-x4) 2 + (x2-2x3) 4 +10 (x1-x4) 4.  
The following bounds are defined on the variables
-1x1 3, −2x2 0, -1x4 3.  
The initial guess is
x0= (3.0,−1.0,0.0,1.0).  

10.1 Program Text

Program Text (e04jdce.c)

10.2 Program Data

None.

10.3 Program Results

Program Results (e04jdce.r)

11 Algorithmic Details

This section contains a short description of the algorithm used in e04jdc which is based on the collaborative work between NAG and the University of Oxford (Cartis et al. (2018)). It uses a model-based derivative-free trust region framework.

11.1 Derivative-free Trust Region Algorithm

In this section, we are interested in generic problems of the form
minimize xn f(x)  
where the derivatives of the objective function f are not easily available. A model-based DFO algorithm maintains a set of points Yk centred on an iterate xk to build quadratic interpolation models of the objective
f(xk+s) ϕk(s)= f(xk)+ gkTs+ 12 sT Hk s ,  
where gk and Hk are built with the interpolation conditions
yYk , ​ϕk (y-xk) =f(y) . (1)
Note that if the number of interpolation points npt is smaller than (nr+1)×(nr+2)2, the model chosen is the one for which the Hessian Hk is the closest to Hk-1 in the Frobenius norm sense. This model is iteratively optimized over a trust region, updated and moved around the new computed points. More precisely, it can be described as:
In the following sections, we call an iteration ‘successful’ when the trial point xk+sk is accepted as the next iterate.

11.2 Bounds on the Variables

The bounds on the variables are handled during the model optimization step (step 2(i) of DFO Algorithm) with an active set method. If a bound is hit, it is fixed and step 2(i) is restarted.

11.3 Dealing with Noisy Problems

If the problem solved is known to be noisy, declaring it as such to the solver with the optional parameter DFO Noisy Problem will modify the behaviour of the solver to take into account the uncertainty of the function evaluations. The two main features implemented to handle noisy objective functions are:
  1. (i)slow update of the trust regions;
  2. (ii)soft restarts of the algorithm can be performed instead of declaring convergence to ensure the solver did not get stuck in a flat region due to the noise.
A soft restart consists of a reset of the trust region's values to the starting ones and a few objective evaluations to improve the geometry of the interpolation set in the new trust region. It is possible to control the number of objective evaluations performed during a soft restart with the optional parameter DFO Number Soft Restarts Pts. After a set maximum number of restarts (DFO Max Soft Restarts) or maximum number of unsuccessful restarts (DFO Max Unsucc Soft Restarts), the solver will declare convergence in the usual way.

12 Optional Parameters

Several optional parameters in e04jdc define choices in the problem specification or the algorithm logic. In order to reduce the number of formal arguments of e04jdc 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 e04zmc anytime between the initialization of the handle and the call to the solver. Modification of the optional parameters during intermediate monitoring stops is not allowed. Once the solver finishes, the optional parameters can be altered again for the next solve.
The option values may be retrieved by e04znc.
The following is a list of the optional parameters available. A full description of each optional parameter is provided in Section 12.1.

12.1 Description of the Optional Parameters

For each option, we give a summary line, a description of the optional parameter and details of constraints.
The summary line contains:
All options accept the value DEFAULT 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.
DFNO Detect UnboundedaDefault =YES
The solver can try to detect whether the problem is unbounded. This option allows you to turn on or off the unboundedness detection heuristic.
Constraint: DFNO Detect Unbounded=YES or NO.
DFNO Objective LimitrDefault =-
This option sets an additional convergence criterion. The solver will stop if it finds a point for which the function value is lower than this parameter.
DFO Maximum Slow StepsiDefault =20
If DFO Maximum Slow Steps>0, this parameter defines the maximum number of consecutive slow iterations nslow allowed. Set DFO Maximum Slow Steps=0 to deactivate the slow iteration detection. The algorithm can stop in two situations:
  1. (i)nslow>DFO Maximum Slow Steps and ρ<DFO Trust Region Slow Tol with fail.code= NW_NOT_CONVERGED,
  2. (ii)nslow>5×DFO Maximum Slow Steps with fail.code= NE_NO_IMPROVEMENT.
Constraint: DFO Maximum Slow Steps0.
DFO Max Objective CallsiDefault =500
A limit on the number of objective function evaluations the solver is allowed to compute. If the limit is reached, the solver stops with fail.code= NE_TOO_MANY_ITER.
Constraint: DFO Max Objective Calls1.
DFO Max Soft RestartsiDefault =5
The maximum total number of soft restarts that can be performed if the objective function is declared as noisy (DFO Noisy Problem=YES).
Constraint: DFO Max Soft Restarts1.
DFO Max Unsucc Soft RestartsiDefault =3
The maximum number of consecutive unsuccessful soft restarts that can be performed if the objective function is declared as noisy (DFO Noisy Problem=YES).
Constraint: DFO Max Unsucc Soft Restarts1.
DFO Monitor FrequencyiDefault =0
If DFO Monitor Frequency>0, monit will be called at the end of every ith step for monitoring purposes.
Constraint: DFO Monitor Frequency0.
DFO Noise LevelrDefault =0.0
Indicates the noise level expected when evaluating the objective function if DFO Noisy Problem=YES.
Constraint: DFO Noise Level0.0.
DFO Noisy ProblemaDefault =NO
Indicates if the function evaluations provided to the solver are noisy. If DFO Noisy Problem=YES, some algorithmic features will be activated:
  1. (i)The trust region update becomes slower to reflect the decreased confidence in the objective values.
  2. (ii)Soft restarts of the algorithm can be performed to ensure the algorithm did not get stuck because of the noise (see DFO Max Soft Restarts, DFO Max Unsucc Soft Restarts and DFO Number Soft Restarts Pts to control the restart characteristics).
  3. (iii)In addition, if DFO Noise Level>0.0, the solver will trigger a soft restart if all the function values are within the noise level.
DFO Number Interp PointsiDefault =0
The maximum number of interpolation points in Yk (1) used to build the linear models of the residuals. If DFO Number Interp Points=0, the number of points is chosen to be nr+1 where nr is the number of non-fixed variables.
Constraint: DFO Number Interp Points0.
Consistency constraint, the solver stops with fail.code= NE_INT if not met:
DFO Number Soft Restarts PtsiDefault =3
The number of interpolation points that are replaced during a soft restart.
Constraint: DFO Number Soft Restarts Pts1.
DFO Print FrequencyiDefault =1
If DFO Print Frequency>0, the solver prints the iteration log to the appropriate units at the end of every ith step.
Constraint: DFO Print Frequency0.
DFO Random SeediDefault =−1
The random seed used to generate the random points used to build the initial model. If DFO Random Seed<0, the random seed will be based on values taken from the real-time clock, potentially resulting in the solver taking a different path each time it is run. Set it to a positive value to get fully reproducible runs.
Constraint: DFO Print Frequency−1.
DFO Starting Trust RegionrDefault =0.1
ρbeg, the initial trust region radius. This parameter should be set to about one tenth of the greatest expected overall change to a variable: the initial quadratic model will be constructed by taking steps from the initial x of length ρbeg along each coordinate direction. The default value assumes that the variables have an order of magnitude 1.
Constraint: DFO Starting Trust Region>ε.
Consistency constraints, the solver stops with fail.code= NE_REAL_2 if not met:
DFO Trust Region Slow TolrDefault =ε0.25
The minimal acceptable trust region radius for the solution to be declared as acceptable. The solver stops if:
Constraint: DFO Trust Region Slow Tol>ε.
Consistency constraint, the solver stops with fail.code= NE_REAL_2 if not met:
DFO Trust Region TolerancerDefault =ε0.37
ρend, the requested trust region radius. The algorithm declares convergence when the trust region radius reaches this limit. It should indicate the absolute accuracy that is required in the final values of the variables.
Constraint: DFO Trust Region Tolerance>ε.
Consistency constraints, the solver stops with fail.code= NE_REAL_2 if not met:
Infinite Bound SizerDefault =1020
This defines the ‘infinite’ bound bigbnd in the definition of the problem constraints. Any upper bound greater than or equal to bigbnd will be regarded as + (and similarly any lower bound less than or equal to -bigbnd 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: Infinite Bound Size1000.
Monitoring FileiDefault =−1
(See Section 3.1.1 in the Introduction to the NAG Library CL Interface for further information on NAG data types.)
If i0, the Nag_FileID number (as returned from x04acc) for the secondary (monitoring) output. If Monitoring File=−1, no secondary output is provided. The information output to this file ID is controlled by Monitoring Level.
Constraint: Monitoring File−1.
Monitoring LeveliDefault =4
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 with Print Level.
Constraint: 0Monitoring Level5.
Print FileiDefault =Nag_FileID number associated with stdout
(See Section 3.1.1 in the Introduction to the NAG Library CL Interface for further information on NAG data types.)
If i0, the Nag_FileID number (as returned from x04acc, stdout as the default) for the primary output of the solver. If Print File=−1, the primary output is completely turned off independently of other settings. The information output to this unit is controlled by Print Level.
Constraint: Print File−1.
Print LeveliDefault =2
This parameter defines how detailed information should be printed by the solver to the primary and secondary output.
i Output
0 No output from the solver.
1 The Header and Summary.
2, 3, 4, 5 Additionally, the Iteration log.
Constraint: 0Print Level5.
Print OptionsaDefault =YES
If Print Options=YES, a listing of optional parameters will be printed to the primary output and is always printed to the secondary output.
Constraint: Print Options=YES or NO.
Print SolutionaDefault =NO
If Print Solution=YES, the solution will be printed to the primary and secondary output.
Constraint: Print Solution=YES or NO.
TaskaDefault =MINIMIZE
This parameter specifies the required direction of the optimization. If Task=FEASIBLE POINT, the objective function (if set) is ignored and the algorithm stops as soon as a feasible point is found with respect to the given tolerance.
Constraint: Task=MINIMIZE, MAXIMIZE or FEASIBLE POINT.
Stats TimeaDefault =NO
This parameter turns 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 YES is equivalent to WALL CLOCK.
Constraint: Stats Time=YES, NO, CPU or WALL CLOCK.
Time LimitrDefault =106
A limit to the number of seconds that the solver can use to solve one problem. If during the convergence check this limit is exceeded, the solver will terminate with fail.code= NE_TIME_LIMIT.
Constraint: Time Limit>0.