VL 01: Introduction to GAMS Flashcards
True or false?
The GAMS compiler does distinguish between upper- and lowercase letters.
False!
The GAMS compiler does NOT distinguish between upper- and lowercase letters.
True or false?
Multiword names are not allowed “New York”, use hyphens “New-York”.
True!
True or false?
Lines starting with an asterisks are comments.
True!
Important: The line has to start with the asterisk! You can’t comment within a statement.
Data
What dimensions do scalars, parameters and tables have?
Scalars: 0
Parameters: 1
Tables => 2
How do you implement a “if … then … “ condition?
If b is greater than 1.5, then assign value 2 to a:
a$(b>1.5) = 2
$(condition)
How do you do an exponential?
**