AMPL¶
-
class
amplpy.
AMPL
(environment=None)¶ An AMPL translator.
An object of this class can be used to do the following tasks:
- Run AMPL code. See
eval()
andevalAsync()
. - Read models and data from files. See
read()
,readData()
,readAsync()
, andreadDataAsync()
. - Solve optimization problems constructed from model and data (see
solve()
andsolveAsync()
). - Access single Elements of an optimization problem. See
getVariable()
,getConstraint()
,getObjective()
,getSet()
, andgetParameter()
. - Access lists of available entities of an optimization problem. See
getVariables()
,getConstraints()
,getObjectives()
,getSets()
, andgetParameters()
.
Error handling is two-faced:
- Errors coming from the underlying AMPL translator (e.g. syntax errors and
warnings obtained calling the eval method) are handled by
the
ErrorHandler
which can be set and get viagetErrorHandler()
andsetErrorHandler()
. - Generic errors coming from misusing the API, which are detected in Python, are thrown as exceptions.
The default implementation of the error handler throws exceptions on errors and prints to console on warnings.
The output of every user interaction with the underlying translator is handled implementing the abstract class
OutputHandler
. The (only) method is called at each block of output from the translator. The current output handler can be accessed and set viagetOutputHandler()
andsetOutputHandler()
.-
__del__
()¶ Default destructor: releases all the resources related to the AMPL instance (most notably kills the underlying interpreter).
-
__init__
(environment=None)¶ Constructor: creates a new AMPL instance with the specified environment if provided.
- Args:
- environment (
Environment
): This allows the user to specify the location of the AMPL binaries to be used and to modify the environment variables in which the AMPL interpreter will run. - Raises:
- RuntimeError: If no valid AMPL license has been found or if the translator cannot be started for any other reason.
-
__module__
= 'amplpy.ampl'¶
-
cd
(path=None)¶ Get or set the current working directory from the underlying interpreter (see https://en.wikipedia.org/wiki/Working_directory).
- Args:
- path: New working directory or None (to display the working directory).
- Returns:
- Current working directory.
-
close
()¶ Stops the underlying engine, and release all any further attempt to execute optimization commands without restarting it will throw an exception.
-
con
¶ Get/Set a constraint.
-
display
(*amplExpressions)¶ Writes on the current OutputHandler the outcome of the AMPL statement.
display e1, e2, .., en;
where e1, …, en are the strings passed to the procedure.
- Args:
- amplExpressions: Expressions to be evaluated.
-
eval
(amplstatements)¶ Parses AMPL code and evaluates it as a possibly empty sequence of AMPL declarations and statements.
As a side effect, it invalidates all entities (as the passed statements can contain any arbitrary command); the lists of entities will be re-populated lazily (at first access)
The output of interpreting the statements is passed to the current OutputHandler (see getOutputHandler and setOutputHandler).
By default, errors are reported as exceptions and warnings are printed on stdout. This behavior can be changed reassigning an ErrorHandler using setErrorHandler.
- Args:
- amplstatements: A collection of AMPL statements and declarations to be passed to the interpreter.
- Raises:
- RuntimeError: if the input is not a complete AMPL statement (e.g. if it does not end with semicolon) or if the underlying interpreter is not running.
-
evalAsync
(amplstatements, callback)¶ Interpret the given AMPL statement asynchronously.
- Args:
amplstatements: A collection of AMPL statements and declarations to be passed to the interpreter.
callback: Callback to be executed when the statement has been interpreted.
- Raises:
- RuntimeError: if the input is not a complete AMPL statement (e.g. if it does not end with semicolon) or if the underlying interpreter is not running.
-
getConstraint
(name)¶ Get the constraint with the corresponding name.
- Args:
- name: Name of the constraint to be found.
- Raises:
- TypeError: if the specified constraint does not exist.
-
getConstraints
()¶ Get all the constraints declared.
-
getData
(*statements)¶ Get the data corresponding to the display statements. The statements can be AMPL expressions, or entities. It captures the equivalent of the command:
display ds1, ..., dsn;
where ds1, …, dsn are the
displayStatements
with which the function is called.As only one DataFrame is returned, the operation will fail if the results of the display statements cannot be indexed over the same set. As a result, any attempt to get data from more than one set, or to get data for multiple parameters with a different number of indexing sets will fail.
- Args:
- statements: The display statements to be fetched.
- Raises:
- RuntimeError: if the AMPL visualization command does not succeed for one of the reasons listed above.
- Returns:
- DataFrame capturing the output of the display command in tabular form.
-
getEntity
(name)¶ Get entity corresponding to the specified name (looks for it in all types of entities).
- Args:
- name: Name of the entity.
- Raises:
- TypeError: if the specified entity does not exist.
- Returns:
- The AMPL entity with the specified name.
-
getErrorHandler
()¶ Get the current error handler.
- Returns:
- The current error handler.
-
getObjective
(name)¶ Get the objective with the corresponding name.
- Args:
- name: Name of the objective to be found.
- Raises:
- TypeError: if the specified objective does not exist.
-
getObjectives
()¶ Get all the objectives declared.
-
getOption
(name)¶ Get the current value of the specified option. If the option does not exist, returns None.
- Args:
- name: Option name.
- Returns:
- Value of the option.
- Raises:
- InvalidArgumet: if the option name is not valid.
-
getOutputHandler
()¶ Get the current output handler.
- Returns:
- The current output handler.
-
getParameter
(name)¶ Get the parameter with the corresponding name.
- Args:
- name: Name of the parameter to be found.
- Raises:
- TypeError: if the specified parameter does not exist.
-
getParameters
()¶ Get all the parameters declared.
-
getSet
(name)¶ Get the set with the corresponding name.
- Args:
- name: Name of the set to be found.
- Raises:
- TypeError: if the specified set does not exist.
-
getSets
()¶ Get all the sets declared.
-
getValue
(scalarExpression)¶ Get a scalar value from the underlying AMPL interpreter, as a double or a string.
- Args:
- scalarExpression: An AMPL expression which evaluates to a scalar value.
- Returns:
- The value of the expression.
-
getVariable
(name)¶ Get the variable with the corresponding name.
- Args:
- name: Name of the variable to be found.
- Raises:
- TypeError: if the specified variable does not exist.
-
getVariables
()¶ Get all the variables declared.
-
interrupt
()¶ Interrupt an underlying asynchronous operation (execution of AMPL code by the AMPL interpreter). An asynchronous operation can be started via evalAsync(), solveAsync(), readAsync() and readDataAsync(). Does nothing if the engine and the solver are idle.
-
isBusy
()¶ Returns true if the underlying engine is doing an async operation.
-
isRunning
()¶ Returns true if the underlying engine is running.
-
obj
¶ Get an objective.
-
option
¶ Get/Set an option.
-
param
¶ Get/Set a parameter.
-
read
(fileName)¶ Interprets the specified file (script or model or mixed) As a side effect, it invalidates all entities (as the passed file can contain any arbitrary command); the lists of entities will be re-populated lazily (at first access).
- Args:
- fileName: Full path to the file.
- Raises:
- RuntimeError: in case the file does not exist.
-
readAsync
(fileName, callback)¶ Interprets the specified file asynchronously, interpreting it as a model or a script file. As a side effect, it invalidates all entities (as the passed file can contain any arbitrary command); the lists of entities will be re-populated lazily (at first access).
- Args:
fileName: Path to the file (Relative to the current working directory or absolute).
callback: Callback to be executed when the file has been interpreted.
-
readData
(fileName)¶ Interprets the specified file as an AMPL data file. As a side effect, it invalidates all entities (as the passed file can contain any arbitrary command); the lists of entities will be re-populated lazily (at first access). After reading the file, the interpreter is put back to “model” mode.
- Args:
- fileName: Full path to the file.
- Raises:
- RuntimeError: in case the file does not exist.
-
readDataAsync
(fileName, callback)¶ Interprets the specified data file asynchronously. When interpreting is over, the specified callback is called. The file is interpreted as data. As a side effect, it invalidates all entities (as the passed file can contain any arbitrary command); the lists of entities will be re-populated lazily (at first access)
- Args:
fileName: Full path to the file.
callback: Callback to be executed when the file has been interpreted.
-
readTable
(tableName)¶ Read the table corresponding to the specified name, equivalent to the AMPL statement:
read table tableName;
- Args:
- tableName: Name of the table to be read.
-
reset
()¶ Clears all entities in the underlying AMPL interpreter, clears all maps and invalidates all entities.
-
set
¶ Get/Set a set.
-
setData
(dataFrame, setName=None)¶ Assign the data in the dataframe to the AMPL entities with the names corresponding to the column names.
- Args:
dataFrame: The dataframe containing the data to be assigned.
setName: The name of the set to which the indices values of the DataFrame are to be assigned.
- Raises:
- AMPLException: if the data assignment procedure was not successful.
-
setErrorHandler
(errorhandler)¶ Sets a new error handler.
- Args:
- errorhandler: The object handling AMPL errors and warnings.
-
setOption
(name, value)¶ Set an AMPL option to a specified value.
- Args:
name: Name of the option to be set (alphanumeric without spaces).
value: The value the option must be set to.
- Raises:
InvalidArgumet: if the option name is not valid.
TypeError: if the value has an invalid type.
-
setOutputHandler
(outputhandler)¶ Sets a new output handler.
- Args:
- outputhandler: The function handling the AMPL output derived from interpreting user commands.
-
solve
()¶ Solve the current model.
- Raises:
- RuntimeError: if the underlying interpreter is not running.
-
solveAsync
(callback)¶ Solve the current model asynchronously.
- Args:
- callback: Callback to be executed when the solver is done.
-
var
¶ Get/Set a variable.
-
wait
()¶ Wait for the current async operation to finish.
-
writeTable
(tableName)¶ Write the table corresponding to the specified name, equivalent to the AMPL statement
write table tableName;
- Args:
- tableName: Name of the table to be written.
- Run AMPL code. See