didppy.IntTable3D
- class didppy.IntTable3D
3-dimensional table of integer constants.
t[x, y, z]
returns an integer expression referring to an item wheret
isIntTable3D
andx
,y
, andz
areElementExpr
,ElementVar
,ElementResourceVar
, orint
. Ifx
,y
, and/orz
are/isSetExpr
,SetVar
, orSetConst
,t[x, y, z]
returns the sum of constants overx
,y
, andz
.Examples
>>> import didppy as dp >>> model = dp.Model() >>> obj = model.add_object_type(number=2) >>> table = model.add_int_table([[[2, 3], [0, 1]], [[0, -1], [2, 2]]]) >>> var = model.add_element_var(object_type=obj, target=1) >>> set_var = model.add_set_var(object_type=obj, target=[0, 1]) >>> table[var, set_var, 1].eval(model.target_state, model) 1
Methods
max
(x, y, z)Takes the maximum of constants in a table over the set of indices.
min
(x, y, z)Takes the minimum of constants in a table over the set of indices.
product
(x, y, z)Takes the product of constants in a table over the set of indices.
- max(x, y, z)
Takes the maximum of constants in a table over the set of indices.
- Parameters:
x (tuple of int, ElementExpr, ElementVar, ElementResourceVar, SetExpr, SetVar, or SetConst) – Set of indices for the first dimension.
y (tuple of int, ElementExpr, ElementVar, ElementResourceVar, SetExpr, SetVar, or SetConst) – Set of indices for the second dimension.
z (tuple of int, ElementExpr, ElementVar, ElementResourceVar, SetExpr, SetVar, or SetConst) – Set of indices for the third dimension.
- Returns:
The maximum.
- Return type:
- Raises:
OverflowError – If x, y, or z is a negative integer.
Examples
>>> import didppy as dp >>> model = dp.Model() >>> obj = model.add_object_type(number=2) >>> table = model.add_int_table([[[2, 3], [0, 1]], [[0, -1], [2, 2]]]) >>> var = model.add_element_var(object_type=obj, target=1) >>> set_var = model.add_set_var(object_type=obj, target=[0, 1]) >>> table.max(var, set_var, 1).eval(model.target_state, model) 2
- min(x, y, z)
Takes the minimum of constants in a table over the set of indices.
- Parameters:
x (tuple of int, ElementExpr, ElementVar, ElementResourceVar, SetExpr, SetVar, or SetConst) – Set of indices for the first dimension.
y (tuple of int, ElementExpr, ElementVar, ElementResourceVar, SetExpr, SetVar, or SetConst) – Set of indices for the second dimension.
z (tuple of int, ElementExpr, ElementVar, ElementResourceVar, SetExpr, SetVar, or SetConst) – Set of indices for the third dimension.
- Returns:
The minimum.
- Return type:
- Raises:
OverflowError – If x, y, or z is a negative integer.
Examples
>>> import didppy as dp >>> model = dp.Model() >>> obj = model.add_object_type(number=2) >>> table = model.add_int_table([[[2, 3], [0, 1]], [[0, -1], [2, 2]]]) >>> var = model.add_element_var(object_type=obj, target=1) >>> set_var = model.add_set_var(object_type=obj, target=[0, 1]) >>> table.min(var, set_var, 1).eval(model.target_state, model) -1
- product(x, y, z)
Takes the product of constants in a table over the set of indices.
- Parameters:
x (tuple of int, ElementExpr, ElementVar, ElementResourceVar, SetExpr, SetVar, or SetConst) – Set of indices for the first dimension.
y (tuple of int, ElementExpr, ElementVar, ElementResourceVar, SetExpr, SetVar, or SetConst) – Set of indices for the second dimension.
z (tuple of int, ElementExpr, ElementVar, ElementResourceVar, SetExpr, SetVar, or SetConst) – Set of indices for the third dimension.
- Returns:
The product.
- Return type:
- Raises:
OverflowError – If x, y, or z is a negative integer.
Examples
>>> import didppy as dp >>> model = dp.Model() >>> obj = model.add_object_type(number=2) >>> table = model.add_int_table([[[2, 3], [0, 1]], [[0, -1], [2, 2]]]) >>> var = model.add_element_var(object_type=obj, target=1) >>> set_var = model.add_set_var(object_type=obj, target=[0, 1]) >>> table.product(var, set_var, 1).eval(model.target_state, model) -2