sum#
- VarDictND.sum(*pattern)[source]#
Sum all variables, or a subset based on wildcard pattern, in an expression.
- Parameters:
- *patternAny, optional
For subsets, the pattern requires one value for each dimension of the N-dim tuple key. The single-character string
'*'(asterisk) can be used as a wildcard to represent all possible values for a dimension.
- Returns:
- gurobipy.LinExpr
- Raises:
- TypeError
If the pattern includes non-scalar(s).
- ValueError
If the pattern is not the same as the length of N-dim tuple keys.
- ValueError
If the pattern has no wildcard or all wildcards.
Examples
Create gurobipy model:
>>> from gurobipy import GRB, Model >>> mdl = Model()
Create index-set:
>>> arcs = IndexSetND([('A', 'B'), ('B', 'C'), ('C', 'B')], names=['ori', 'des'])
Add variables:
>>> from opti_extensions.gurobipy import addVars >>> arc_flow = addVars(mdl, arcs, ub=10, vtype=GRB.CONTINUOUS, name='arc-flow') >>> mdl.update()
Sum all variables:
>>> arc_flow.sum() <gurobi.LinExpr: arc-flow[A,B] + arc-flow[B,C] + arc-flow[C,B]>
Sum subset of variables having
'B'at the second dimension index:>>> arc_flow.sum('*', 'B') <gurobi.LinExpr: arc-flow[A,B] + arc-flow[C,B]>
Sum subset of variables having
'Z'at the first dimension index:>>> arc_flow.sum('Z', '*') <gurobi.LinExpr: 0.0>