Getting Started Examples (tunerg01)
/***************************************************************/
/* */
/* S A S S A M P L E L I B R A R Y */
/* */
/* NAME: tunerg01 */
/* TITLE: Getting Started Examples (tunerg01) */
/* PRODUCT: OR */
/* SYSTEM: ALL */
/* KEYS: */
/* PROCS: OPTMILP, PRINT */
/* DATA: */
/* */
/* SUPPORT: UPDATE: */
/* REF: */
/* MISC: Example from the Getting Started section of the */
/* Option Tuner documentation. */
/* */
/***************************************************************/
/* define libname that locates problems to be tuned */
libname a '.';
data probs;
input name $1-8;
datalines;
a.air04
a.air05
;
data optvals;
input option $1-10;
datalines;
cutclique
cutgomory
heuristics
;
proc optmilp maxtime=1800;
tuner maxtime=7200 problems=probs optionvalues=optvals tunerout=out;
performance nthreads=4;
run;