SLPDATA("TOLSET")


Purpose
Assign a special SLP tolerance set for a variable
Synopsis
procedure SLPDATA(TOLSET:string, Var:mpvar, TolSet:integer)
Arguments
TOLSET 
string containing "TOLSET", indicating the SLPDATA type
Var 
the variable being assigned a special tolerance set
TolSet 
number of the tolerance set assigned to the variable
Example
The following code fragment assigns tolerance set number 3 to the variables RVP(P):
declarations
  RVP: array(Prod) of mpvar
end-declarations

forall (P in Prod) SLPDATA("TOLSET",RVP(P),3)
Further information
Tolerance sets are created and modified by chgtolset.
The current tolerance set for a variable is obtained from getvartolset.
The default tolerance set is number zero; this uses the system-defined values which are set using the control parameters xslp_atol_a etc.


If you have any comments or suggestions about these pages, please send mail to docs@dashoptimization.com.