1. Description
  2. Declaring a Variable
  3. Variable Types
  4. Variable Bounds
  5. Initial Values
  6. Default Values
  7. Accessing a Variable
  8. Examining Variables
  9. Fixing Values


Description


AMPL variables are used to represent variables in mathematical programmes. They are quantities that a solver (e.g., CPLEX, MINOS) is allowed to change as it looks for a solution to the mathematical programme.

Declaring a Variable


AMPL variables are created by using the {\tt var} keyword and a label for the variable:
\begin{verbatim}
var ;
\end{verbatim}

Example


\begin{verbatim}
var x1;
\end{verbatim}
Often, you will want to create one variable for every member (respectively pair, tuple) from a set
(a two-dimensional set, multi-dimensional set, respectively). To do this you simply add the set after the variable name:

Example


\begin{verbatim}
var Percentage {INGREDIENTS};
\end{verbatim}

You can access the variable corresponding to the member of a set by using brackets {\tt [} and {\tt ]}
\begin{verbatim}
let Price['Malibu'] := 100;

solve;

display Price['Malibu]':
\end{verbatim}
or you can access all the variables at once by using the variable name
\begin{verbatim}
display Price;
\end{verbatim}

Variable Types


Variables must be one of four types: real (the default), binary (0-1), integer or symbolic. You declare the type of a variable by adding the type keyword after the variable label (or giving no type if it is a real variable).
\begin{verbatim}
var [];
\end{verbatim}

Examples


\begin{verbatim}
var Build binary;
var Production {SURFBOARDS} integer;
\end{verbatim}

Real variables can take any real value, binary variables must be either 0 (often meaning false) or 1 (often meaning true), and integer variables can take on any integer value. If a mathematical programme has any binary or integer variables then it is a _mixed-integer (non)linear programme_ and is often more difficult to solve.

Symbolic variables are used to restrict a variable to lie within a set, e.g,
\begin{verbatim}
set VOWELS := {'a', 'e', 'i', 'o', 'u'};
var vowel symbolic in VOWELS;
\end{verbatim}
so the {\tt in } must follow the {\tt symbolic} keyword. We don't use symbolic variables in our case studies.

Variable Bounds


Both real and integer variables may have lower and upper bounds. For example, in many mathematical programmes variables are assumed to be nonnegative, e.g.
\begin{verbatim}
var Percentage {INGREDIENTS} >= 0;
var Production {SURFBOARDS} integer >= 0;
\end{verbatim}

Bounds are set by adding them after the variable label:
\begin{verbatim}
var [>= ] [<= ];
\end{verbatim}
**Note** There are many attributes that may follow a variable declaration. They can be placed in any order and must be separated by either whitespace or commas.
\begin{verbatim}
var Percentage {INGREDIENTS} >= 0, <= 100;
var Production {SURFBOARDS} integer >= 0;
\end{verbatim}

Initial Values


Often (especially when solving a nonlinear programme) the initial value, i.e., the value the variable has at the start of the solution process, will affect how the mathematical programme solves. In AMPL you can set initial values on variables either when you declare them or dynamically. To set an initial value within a variable declaration simply add an assignment operator {\tt :=} and the required initial value.
\begin{verbatim}
var Price := 1;
\end{verbatim}
To set an initial value dynamically use the {\tt let} keyword with the assignment operator and required value before solving.
\begin{verbatim}
var Price {SURFBOARDS};

let Price['Malibu'] := 1;
let Price['SuperThruster'] := 1;

option solver minos;
solve;
\end{verbatim}

Default Values


Another way of setting initial variable values is to set a new default value (otherwise AMPL sets variables to 0 by default). This is done using the {\tt default} keyword.

\begin{verbatim}
var Price {SURFBOARDS} >= 0 default 100;
\end{verbatim}


You can still change the initial value of the variables using the {\tt let} keyword, but if you don't they will automatically take on the default value.

\begin{verbatim}
var Price {SURFBOARDS} >= 0 default 1;

let Price['Super Thruster'] := 50;

solve; # Price['Malibu'] starts at 100, Price['Super Thruster'] starts at 50
\end{verbatim}



Accessing a Variable


Variable values are accessed by specifying the indices of the variable you want to access within {\tt [} and {\tt ]}.

Examples


See {\tt Percentage} below.
\begin{verbatim}
# Objective: minimise the cost per (100g) can
minimize TotalCost: sum {i in INGREDIENTS} Cost[i] * Percentage[i];

# Constraints: Meet the nutritional requirements

subject to MeetRequirement {r in REQUIREMENTS}:
Min[r] <= sum {i in INGREDIENTS} Contributes[i, r] * Percentage[i]
<= Max[r];
\end{verbatim}

Examining Variables
You can easily examine the value of a variable using the {\tt display} command. You can also examine the column of a variable by using the {\tt expand} keyword.


Fixing Values


Once variables have been added to a model you cannot remove them. However, you can set their values and fix them so that their value doesn't change. AMPL will then treat that variable as a parameter with the fixed value.

To fix a variable, use the {\tt fix} keyword and the variable name.
\begin{verbatim}
fix ;
\end{verbatim}

If you decide that the variable should be considered again, you can unfix the variable.

To stop a variable being fixed, use the {\tt unfix} keyword and the variable name.
\begin{verbatim}
unfix ;
\end{verbatim}

In The Surfboard Production Problem we fix the {\tt Price} variables to remove their nonlinearity. This allows us to use CPLEX to find the optimal production levels for different prices and explore the nonlinear objective function of the price variables.
\begin{verbatim}
param Objective {1..150, 1..150};

fix Price;

for {p in 1..150 by 1, q in 1..150 by 1} {
let Price['Malibu'] := p;
let Price['Super Thruster'] := q;

option solver cplex;
solve;

let Objective[p, q] := TotalProfit;
}
\end{verbatim}

We also fix the prices to their rounded values (to the nearest cent) and re-solve to see what effect the rounding has on the solution.
\begin{verbatim}
reset;

model surfboard.mod;
data surfboard.dat;

option solver cplex;

let Price['Malibu'] := 100;
let Price['Super Thruster'] := 58.14;

fix Price;

solve;

display Price, Production;
\end{verbatim}

-- MichaelOSullivan - 28 Feb 2008

Edit | Attach | Watch | Print version | History: r8 | r4 < r3 < r2 < r1 | Backlinks | Raw View | Raw edit | More topic actions...
Topic revision: r2 - 2008-02-28 - MichaelOSullivan
 
  • Edit
  • Attach
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2025 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback