Select Your Region
Americas
Europe
Middle East & Africa
Asia Pacific
/*****************************************************************************/ /* */ /* S A S S A M P L E L I B R A R Y */ /* */ /* NAME: tunere01 */ /* TITLE: Tuning the Default Set of Options on a Single Problem (tunere01) */ /* PRODUCT: OR */ /* SYSTEM: ALL */ /* KEYS: */ /* PROCS: OPTMILP */ /* DATA: */ /* */ /* SUPPORT: UPDATE: */ /* REF: */ /* MISC: Example 1 from the Option Tuner documentation. */ /* */ /*****************************************************************************/ /* filename air04 "path-to-correct file"; %mps2sasd(mpsfile="air04.mps", outdata=a.air04); */ proc optmilp data=air04 maxtime=300; tuner maxconfigs=200 printfreq=2 tout=out; performance nthreads=2; run; proc print data=out; run;