SoylentCalculator/main.ampl

7 lines
159 B
Plaintext
Raw Normal View History

2019-11-28 20:41:06 +00:00
reset;
model Rezept.mod;
data Rezept.dat;
option solver "ampl.linux64/minos";
solve;
2019-12-11 09:37:28 +00:00
display {i in ZUTATEN} menge[i]*bezugsmenge[i], total_weight, kaufpreis ;