IVariable
(class from pyomo.core.kernel.variable
)
- class pyomo.core.kernel.variable.IVariable[source]
Bases:
ICategorizedObject
,NumericValue
The interface for decision variables
- __init__()
Methods
__init__
()activate
()Activate this object.
clone
()Returns a copy of this object with the parent pointer set to
None
.Deactivate this object.
fix
([value])Fix the variable.
free
()Free the variable.
getname
([fully_qualified, name_buffer, ...])Dynamically generates a name for this object.
has_lb
()Returns
False
when the lower bound isNone
or negative infinityhas_ub
()Returns
False
when the upper bound isNone
or positive infinityReturns
True
when the domain type isIntegerSet
and the bounds are within [0,1].Return True if this class is a Pyomo component
Returns
False
because this is not a constant in an expression.Returns
True
when the domain type isRealSet
.Returns
True
when the domain type isIntegerSet
.is_expression_type
([expression_system])Return True if this numeric value is an expression
is_fixed
()Returns
True
if this variable is fixed, otherwise returnsFalse
.Return True if this numeric value is an indexed object
Returns
True
when the domain type isIntegerSet
.Return True if this class is a Pyomo Boolean object.
Return True if this numeric value is a named expression
Return True if this class is a Pyomo numeric object
Returns
False
because this is not a parameter object.Returns
True
because this is a variable.Return True if this object is a reference.
DEPRECATED.
Returns
True
because this is a variable object.Return the polynomial degree of this expression
to_string
([verbose, labeler, smap, ...])Return a string representation of the expression tree.
unfix
()Free the variable.
Attributes
The active status of this object.
Get/Set the bounds as a tuple (lb, ub).
The object's category type.
The domain type of the variable (
RealSet
orIntegerSet
)The fixed status of the variable
Return the numeric value of the variable lower bound.
The object's local name within the context of its parent.
Lower slack (value - lb).
The object's fully qualified name.
The object's parent (possibly None).
min(lslack, uslack).
The stale status of the variable
The object's storage key within its parent
Return the numeric value of the variable upper bound.
Upper slack (ub - value).
The value of the variable
Member Documentation
- activate()
Activate this object.
- clone()
Returns a copy of this object with the parent pointer set to
None
.A clone is almost equivalent to deepcopy except that any categorized objects encountered that are not descendents of this object will reference the same object on the clone.
- deactivate()
Deactivate this object.
- fix(value=NOTSET)[source]
Fix the variable. Sets the fixed indicator to
True
. An optional value argument will update the variable’s value before fixing.
- free()
Free the variable. Sets the fixed indicator to
False
.
- getname(fully_qualified=False, name_buffer={}, convert=<class 'str'>, relative_to=None)
Dynamically generates a name for this object.
- Parameters:
fully_qualified (bool) – Generate a full name by iterating through all ancestor containers. Default is
False
.convert (function) – A function that converts a storage key into a string representation. Default is the built-in function str.
relative_to (object) – When generating a fully qualified name, generate the name relative to this block.
- Returns:
If a parent exists, this method returns a string representing the name of the object in the context of its parent; otherwise (if no parent exists), this method returns
None
.
- is_binary()[source]
Returns
True
when the domain type isIntegerSet
and the bounds are within [0,1].
- is_component_type()
Return True if this class is a Pyomo component
- is_expression_type(expression_system=None)
Return True if this numeric value is an expression
- is_indexed()
Return True if this numeric value is an indexed object
- is_logical_type()
Return True if this class is a Pyomo Boolean object.
Boolean objects include constants, variables, or logical expressions.
- is_named_expression_type()
Return True if this numeric value is a named expression
- is_numeric_type()
Return True if this class is a Pyomo numeric object
- is_reference()
Return True if this object is a reference.
- is_relational()
DEPRECATED.
Return True if this numeric value represents a relational expression.
Deprecated since version 6.4.3: is_relational() is deprecated in favor of is_expression_type(ExpressionType.RELATIONAL)
- to_string(verbose=None, labeler=None, smap=None, compute_values=False)
Return a string representation of the expression tree.
- Parameters:
verbose (bool) – If
True
, then the string representation consists of nested functions. Otherwise, the string representation is an infix algebraic equation. Defaults toFalse
.labeler – An object that generates string labels for non-constant in the expression tree. Defaults to
None
.smap – A SymbolMap instance that stores string labels for non-constant nodes in the expression tree. Defaults to
None
.compute_values (bool) – If
True
, then fixed expressions are evaluated and the string representation of the resulting value is returned.
- Returns:
A string representation for the expression tree.
- property active
The active status of this object.
- property bounds
Get/Set the bounds as a tuple (lb, ub).
- property ctype
The object’s category type.
- property domain_type
The domain type of the variable (
RealSet
orIntegerSet
)
- property fixed
The fixed status of the variable
- property lb
Return the numeric value of the variable lower bound.
- property local_name
The object’s local name within the context of its parent. Alias for obj.getname(fully_qualified=False).
- property lslack
Lower slack (value - lb). Returns
None
if the variable value isNone
.
- property name
The object’s fully qualified name. Alias for obj.getname(fully_qualified=True).
- property parent
The object’s parent (possibly None).
- property slack
min(lslack, uslack). Returns
None
if the variable value isNone
.
- property stale
The stale status of the variable
- property storage_key
The object’s storage key within its parent
- property ub
Return the numeric value of the variable upper bound.
- property uslack
Upper slack (ub - value). Returns
None
if the variable value isNone
.
- property value
The value of the variable