Is there a way to solve a problem using AMPL in a step by step(or a verbose, or a debug) mode? Preferably showing all basis exchanges?
The manuals of AMPL make reference to script development, but i didn't found anything about basis exchanges on these scripts.
I want to do this because i need to check if no mistakes were made while doing my model.
Thanks in advance.
displayoption to set the level of output for the Simplex LP solver. – Erwin Kalvelagen May 27 '16 at 20:00Set the solver as cplex
option solver cplex;
As Erwin pointed, this command shows output on every iteration
option cplex_options 'display=2';
– Victor Hugo Jun 28 '16 at 23:50