## This file contains script commands for solving an optimization model ## Load the model model mex.mod; ## Load the data data mex.dat; ## Choose solver option solver cplexamp; ## Other useful options option cplex_options 'sensitivity'; # Instructs CPLEX to maintain sensitivity analysis information option presolve 0; # Turns off AMPL preprocessing ## Solve the model solve; ## Display results display raw_trans; display Proc_Cap.dual; display raw_trans.rc;