The OPTMODEL Procedure
Syntax: OPTMODEL Procedure
(View the complete code for this example.)
PROC OPTMODEL statements are divided into three categories: the PROC statement, the declaration statements, and the programming statements. The PROC statement invokes the procedure and sets initial option values. The declaration statements declare optimization model components. The programming statements read and write data, invoke the solver, and print results. In the following text, the statements are listed in the order in which they are grouped, with declaration statements first.
Note: Solver specific options are described in the individual chapters that correspond to the solvers.
CONSTRAINT constraints;
IMPVAR optimization expression declarations;
MAX objective;
MIN objective;
NUMBER parameter declarations;
PROBLEM problem declaration;
SET
< types >
parameter declarations;
STRING parameter declarations;
VAR variable declarations;
Assignment parameter = expression;
CALL name
( expressions )
;
CLOSEFILE files;
COFOR { index-set } statement;
CONTINUE ;
CREATE DATA SAS-data-set FROM columns;
DO ; statements ; END;
DO variable = specifications ; statements ; END;
DO UNTIL ( logic ) ; statements ; END;
DO WHILE ( logic ) ; statements ; END;
DROP constraint;
END ;
EXPAND name
/ options
;
FILE file;
FIX variable
= expression
;
FOR { index-set } statement;
IF logic THEN statement ;
ELSE statement
;
LEAVE ;
Null ;
PRINT print items;
PROFILE
mode
options;
PUT put items;
QUIT ;
READ DATA SAS-data-set INTO columns;
RESET OPTIONS options;
RESTORE constraint;
SAVE MPS SAS-data-set
OBJECTIVE name
NOOBJECTIVE
;
SAVE QPS SAS-data-set
OBJECTIVE name
NOOBJECTIVE
;
SOLVE
WITH solver
OBJECTIVE name
NOOBJECTIVE
RELAXINT
/ options
;
STOP ;
SUBMIT
arguments
/ options
; SAS-statements ; ENDSUBMIT;
UNFIX variable
= expression
;
USE PROBLEM problem;