Originally posted by: EdKlotz
>
> Sorry for the late reply.
>
> For us it would be the most convenient if you could send a .sav file of your model. I think that AMPL should be able to produce this.
> My guess is that your issue arises from numerical problems, but of course I can only tell if I had the model.
>
>
> Tobias
Yes, AMPL can export SAV files using the 'file' or 'writeprob' directives among your cplex_options. For example
ampl: model myfile.mod;
ampl: data myfile.dat;
ampl: option cplex_options 'file myfile.sav';
ampl: solve;
#CPLEXOptimizers#DecisionOptimization