# COMANDOS EN AMPL 
# EJEMPLO PARA UTILIZAR EL NEOS SERVER


# COMANDOS DE INICIALIZACIÓN DE CONDICIONES:

option show_stats 1;
option solution_precision 0;
option omit_zero_rows 1;
option omit_zero_cols 1;
option display_precision 6;
option display_round 1;
option display_width 50;

# COMANDO DE SOLUCIÓN:

solve;

# COMANDOS DE IMPRESIÓN DE RESULTADOS:

printf "\n\n*************************************\n";
printf "Ubicación de los productos\n";
printf "*************************************\n\n";

printf "\nTIEMPO = \t%9.1f", TIEMPO;

printf "\n\n unidades en ubicación   =\n\n";
display X;

printf "\n\n  producto asignado a ubicación   =\n\n";
display Y;