Constraint¶
-
public class
Constraint
extends Entity<ConstraintInstance>¶ This class represents an algebraic or logical constraint. In case the constraint is scalar, its values can be accessed via functions like
Constraint.body
andConstraint.dual
. All the AMPL suffixes for constraints (see http://www.ampl.com/NEW/suffbuiltin.html) are available through methods of this class with the same name (and methods ofConstraintInstance
for indexed constraints).Note that, since this class represents both algebraic and logical constraints, some suffixes might not be available for every entity.
An
UnsupportedOperationException
is thrown if one of such methods is called for a non-scalar constraint and if a method corresponding to a suffix which is not supported by the type of the constraint is called.The instances, represented by the class
ConstraintInstance
can be accessed via the methodConstraint.get
(see section Access to instances and values for further information on how to access instances).To gain access to all the values in an entity (for all instances and all suffixes for that entities), see
Entity.getValues
and theDataFrame
class.
Methods¶
-
public double
body
()¶ Get the current value of the constraint’s body
-
public int
defvar
()¶ Get the index in
_var
of “defined variable” substituted out by the constraint
-
public double
dinit
()¶ Get the current initial guess for the constraint’s dual variable
-
public double
dinit0
()¶ Get the original initial guess for the constraint’s dual variable
-
public void
drop
()¶ Drop all instances in this constraint entity, corresponding to the AMPL code:
drop constraintname;
-
public double
dual
()¶ Get the current value of the constraint’s dual variable.
Note that dual values are often reset by the underlying AMPL interpreter by the presolve functionalities triggered by some methods. A possible workaround is to set the option
presolve
tofalse
(seeAMPL.setBoolOption
).
-
public ConstraintInstance
get
()¶ Get the constraint instance (to be used only on scalar constraints)
Throws: - UnsupportedOperationException – if the constraint is not scalar.
- IllegalStateException – if the constraint has been deleted in the underlying AMPL interpreter
Returns: The corresponding instance.
-
public ConstraintInstance
get
(Object... key)¶ Get the constraint instance corresponding to the specified key. See Access to instances and values for further information on how the key can be specified.
Parameters: - key – The key to be found
Throws: - IllegalArgumentException – if trying to access an instance with the wrong number of keys (see
Entity.indexarity
) - IllegalStateException – if the entity has been deleted in the underlying AMPL interpreter
Returns: The constraint instance corresponding to the specified key. Returns
null
if the specified key is not present.
-
public ConstraintInstance
get
(Tuple key)¶ Get the constraint instance corresponding to the specified key, expressed as a Tuple. See Access to instances and values for further information on how the key can be specified.
Parameters: - key – The indexing Tuple of the instance to be found
Throws: - IllegalArgumentException – if trying to access an instance with the wrong indexarity (see
Entity.indexarity
) - IllegalStateException – if the entity has been deleted in the underlying AMPL interpreter
Returns: The constraint instance corresponding to the specified key. Returns
null
if the specified key is not present.
-
public boolean
isLogical
()¶ Check if the constraint is a logical constraint. The available suffixes differ between logical and non logical constraints. See http://www.ampl.com/NEW/suffbuiltin.html for a list of the available suffixes for algebraic constraints. The suffixes available for logical constraints are marked on the method description by “Valid only for logical constraints”.
Returns: True if logical
-
public double
lb
()¶ Get the current value of the constraint’s lower bound
-
public double
lbs
()¶ Get the constraint lower bound sent to the solver (reflecting adjustment for fixed variables)
-
public double
ldual
()¶ Get the current dual value associated with the lower bound
-
public double
lslack
()¶ Get the slack at lower bound
body - lb
-
public void
restore
()¶ Restore all instances in this constraint entity, corresponding to the AMPL code:
restore constraintname;
-
public void
setDual
(double dual)¶ Set the value of the dual variable associated to this constraint (valid only if the constraint is scalar). Equivalent to the AMPL statement:
let c := dual;
Note that dual values are often reset by the underlying AMPL interpreter by the presolve functionalities triggered by some methods. A possible workaround is to set the option
presolve
tofalse
(seeAMPL.setBoolOption
).Parameters: - dual – The value to be assigned to the dual variable
-
public double
slack
()¶ Constraint slack (the lesser of lslack and uslack)
-
public String
sstatus
()¶ Get the solver status (basis status of constraint’s slack or artificial variable)
-
public String
toString
()¶ Returns a string representation of this constraint. Equivalent to the AMPL statement
show constraintName;
-
public double
ub
()¶ Get the current value of the constraint’s upper bound
-
public double
ubs
()¶ Get the constraint upper bound sent to the solver (reflecting adjustment for fixed variables)
-
public double
udual
()¶ Get the current dual value associated with the upper bounds
-
public double
uslack
()¶ Get the slack at upper bound
ub - body
-
public double
val
()¶ Get the AMPL val suffix. Valid only for logical constraints.