Tuning the Default Set of Options on a Single Problem (tunere01)
/*****************************************************************************/
/* */
/* 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, PRINT */
/* DATA: */
/* */
/* SUPPORT: UPDATE: */
/* REF: */
/* MISC: Example 1 from the Option Tuner documentation. */
/* */
/*****************************************************************************/
/* define libname that locates problems to be tuned */
libname a '.';
/*
filename air05 "path-to-air05.mps file";
%mps2sasd(mpsfile=air05, outdata=a.air05);
*/
proc optmilp data=a.air05 maxtime=300;
tuner maxconfigs=20 printfreq=2 tunerout=out;
run;
title "Tuner Output";
proc print data=out(obs=10);
run;