Previous Page | Next Page

The OPTMODEL Procedure

PROC OPTMODEL Statement

The PROC OPTMODEL statement invokes the OPTMODEL procedure. You can specify options to control how the optimization model is processed and how results are displayed. This is the syntax:

    PROC OPTMODEL[ option(s) ];

The following options can appear in the PROC OPTMODEL statement (these options can also be specified by the RESET statement).

CDIGITS=num

specifies the expected number of decimal digits of accuracy for nonlinear constraints. The value can be fractional. PROC OPTMODEL uses this option to choose a step length when numeric derivative approximations are required to evaluate the Jacobian of nonlinear constraints. The default value depends on your operating environment. It is assumed that constraint values are accurate to the limits of machine precision.

See the section Automatic Differentiation for more information about numeric derivative approximations.

FD=FORWARD | CENTRAL

selects the method used to approximate numeric derivatives when analytic derivatives are unavailable. Most solvers require the derivatives of the objective and constraints. The methods available are as follows:

FD=FORWARD

use forward differences

FD=CENTRAL

use central differences

The default value is FORWARD. See the section Automatic Differentiation for more information about numeric derivative approximations.

FDIGITS=num

specifies the expected number of decimal digits of accuracy for the objective function. The value can be fractional. PROC OPTMODEL uses the value to choose a step length when numeric derivatives are required. The default value depends on your operating environment. It is assumed that objective function values are accurate to the limits of machine precision.

See the section Automatic Differentiation for more information about numeric derivative approximations.

INITVAR | NOINITVAR

selects whether or not to pass initial values for variables to the solver when the SOLVE statement is executed. INITVAR enables the current variable values to be passed. NOINITVAR causes the solver to be invoked without any specific initial values for variables. The INITVAR option is the default.

Note that the LP and QP solvers always ignore initial values. The NLPU, NLPC, SQP, and IPNLP solvers attempt to use specified initial values. The MILP solver uses initial values only if the PRIMALIN option is specified.

INTFUZZ=num

specifies the tolerance for rounding the bounds on integer and binary variables to integer values. Bounds that differ from an integer by at most num are rounded to that integer. Otherwise lower bounds are rounded up to the next greater integer and upper bounds are rounded down to the next lesser integer. The value of num can range between 0 and 0.5. The default value is 0.00001.

MAXLABLEN=num

specifies the maximum length for MPS row and column labels. The allowed range is 8 to 256, with 32 as the default. This option can also be used to control the length of row and column names displayed by solvers, such as those found in the LP solver iteration log. See also the description of the .label suffix in the section Suffixes.

MISSCHECK | NOMISSCHECK

enables detailed checking of missing values in expressions. MISSCHECK requests that a message be produced each time PROC OPTMODEL evaluates an arithmetic operation or built-in function that has missing value operands (except when the operation or function specifically supports missing values). The MISSCHECK option can increase processing time. NOMISSCHECK turns off this detailed reporting. NOMISSCHECK is the default.

PDIGITS=num

requests that the PRINT statement display num significant digits for numeric columns for which no format is specified. The value can range from 1 to 9. The default is 5.

PMATRIX=num

adjusts the density evaluation of a two-dimensional array to affect how it is displayed. The value num scales the total number of nonempty array elements and is used by the PRINT statement to evaluate whether a two-dimensional array is "sparse" or "dense." Tables containing a single two-dimensional array are printed in list form if they are sparse and in matrix form if they are dense. Any nonnegative value can be assigned to num; the default value is 1. Specifying values for the PMATRIX= option less than 1 causes the list form to be used in more cases, while specifying values greater than 1 causes the matrix form to be used in more cases. If the value is 0, then the list form is always used. See the section PRINT Statement for more information.

PRESOLVER=option
PRESOLVER=num

specifies a presolve option or its corresponding value num, as listed in Table 8.6.

Table 8.6 Values for the PRESOLVER= Option

Number

Option

Description

–1

AUTOMATIC

Apply presolver using default setting.

0

NONE

Disable presolver.

1

BASIC

Perform minimal processing, only substituting fixed variables and removing empty feasible constraints.

2

MODERATE

Apply a higher level of presolve processing.

3

AGGRESSIVE

Apply the highest level of presolve processing.

The OPTMODEL presolver tightens variable bounds and eliminates redundant constraints. In general, this improves the performance of any solver. The AUTOMATIC option is intermediate between the MODERATE and AGGRESSIVE levels.

PRESTOL=num

provides a tolerance so that slightly infeasible constraints can be eliminated by the OPTMODEL presolver. If the magnitude of the infeasibility is no greater than , where X is the value of the original bound, then the empty constraint is removed from the presolved problem. OPTMODEL’s presolver does not print messages about infeasible constraints and variable bounds when the infeasibility is within the PRESTOL tolerance. The value of PRESTOL can range between 0 and 0.1; the default value is 1E12.

PRINTLEVEL=num

controls the level of listing output during a SOLVE command. The Output Delivery System (ODS) tables printed at each level are listed in Table 8.7. Some solvers can produce additional tables; see the individual solver chapters for more information.

Table 8.7 Values for the PRINTLEVEL= Option

Number

Description

0

Disable all tables.

1

Print Problem Summary and Solution Summary.

2

Print Problem Summary, Solution Summary, Methods of Derivative Computation (for NLP solvers), Solver Options, Optimization Statistics and solver-specific ODS tables.

For more details about the ODS tables produced by PROC OPTMODEL, see the section ODS Table and Variable Names.

PWIDTH=num

sets the width used by the PRINT statement to display numeric columns when no format is specified. The smallest value num can take is the value of the PDIGITS= option plus 7; the largest value num can take is 16. The default value is equal to the value of the PDIGITS= option plus 7.

VARFUZZ=num

specifies the smallest difference that is permitted by the OPTMODEL presolver between the upper and lower bounds of an unfixed variable. If the difference is smaller than num, then the variable is fixed to the average of the upper and lower bounds before it is presented to the solver. Any nonnegative value can be assigned to num; the default value is 0.

Previous Page | Next Page | Top of Page