Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
<-- Ready to Review - done - Lauren--> The AMPL Syntax Guide | ||||||||
Line: 23 to 23 | ||||||||
The # is used for commenting, any characters on a line after the # are ignored by AMPL.
Examples | ||||||||
Changed: | ||||||||
< < | The Whiskas Cat Food Problem # The set of all possible ingredients for the cat food set INGREDIENTS; | |||||||
> > | The Whiskas Cat Food Problem
# The set of all possible ingredients for the cat food set INGREDIENTS; | |||||||
The Surfboard Production Problem | ||||||||
Added: | ||||||||
> > | ||||||||
Changed: | ||||||||
< < | param Resin {SURFBOARDS} >= 0; # Amount of resin (in kilos) needed for a board param TotalResin >= 0; # Total amount of resin available | |||||||
> > | param Supply {MATERIALS}; # The supply of each raw material param Recipe {MATERIALS, SURFBOARDS}; # The "recipe" for making surfboards | |||||||
Using =symbolic |