None
import sys
if "google.colab" in sys.modules:
!wget "https://raw.githubusercontent.com/ndcbe/CBE60499/main/notebooks/helper.py"
import helper
helper.install_idaes()
helper.install_ipopt()
helper.install_cbc()
helper.download_figures(['strip_packing.png'])
milp_solver = 'gurobi'
The following excerpts are from Section 15.7 in Biegler, Grossmann, and Westerberg (1997).
The following three step procedure shows how to convert logical statements into conjunctive normal form.
Once in conjunctive normal form, we can apply the following rules:
Reference: https://www.minlp.org/library/problem/index.php?i=121&lib=GDP
Aldo Vecchietti (1) and Ignacio Grossmann (2)
(1) INGAR – Instituto de Desarrollo y Diseño – CONICET – UTN, Avellaneda 3657 – Santa Fe ‐ Argentina
(2) Carnegie Mellon University, 5000 Forbes Av. ‐ Pittsburgh, PA ‐ USA
Description: https://www.minlp.org/problems/ver/156/over/Strip-Packing-Overview.pdf
Results: https://www.minlp.org/problems/ver/156/results/Strip-Packing-Results.pdf
Problem Formulation: https://www.sciencedirect.com/science/article/pii/S0098135405000992
'''
Instead of using
# import pyomo.environ as pyo
We can import specific functions/objects
'''
from pyomo.environ import (ConcreteModel, NonNegativeReals, Objective, Param,
Set, SolverFactory, TransformationFactory, Var, value)
# Strip-packing example from http://minlp.org/library/lib.php?lib=GDP
# This model packs a set of rectangles without rotation or overlap within a
# strip of a given width, minimizing the length of the strip.
def create_model():
"""Build the strip packing model."""
model = ConcreteModel(name="Rectangles strip packing")
model.rectangles = Set(ordered=True, initialize=[0, 1, 2, 3, 4, 5, 6, 7])
# Width and Length of each rectangle
model.rect_width = Param(
model.rectangles, initialize={0: 3, 1: 3, 2: 2, 3: 2, 4: 3, 5: 5,
6: 7, 7: 7})
# parameter indexed by each rectangle
# length means height
model.rect_length = Param(
model.rectangles, initialize={0: 4, 1: 3, 2: 2, 3: 2, 4: 3, 5: 3,
6: 4, 7: 4})
model.strip_width = Param(
initialize=10, doc="Available width of the strip")
# upperbound on length (default is sum of lengths of rectangles)
model.max_length = Param(
initialize=sum(model.rect_length[i] for i in model.rectangles),
doc="maximum length of the strip (if all rectangles were arranged "
"lengthwise)")
# x (length) and y (width) coordinates of each of the rectangles
model.x = Var(model.rectangles,
bounds=(0, model.max_length),
doc="rectangle corner x-position (position across length)")
def w_bounds(m, i):
return (0, m.strip_width - m.rect_width[i])
model.y = Var(model.rectangles,
bounds=w_bounds,
doc="rectangle corner y-position (position down width)")
model.strip_length = Var(
within=NonNegativeReals, doc="Length of strip required.")
def rec_pairs_filter(model, i, j):
return i < j
model.overlap_pairs = Set(
initialize=model.rectangles * model.rectangles,
dimen=2, filter=rec_pairs_filter,
doc="set of possible rectangle conflicts")
@model.Constraint(model.rectangles)
def strip_ends_after_last_rec(model, i):
return model.strip_length >= model.x[i] + model.rect_length[i]
model.total_length = Objective(expr=model.strip_length,
doc="Minimize length")
#
# Insert the no-overlap disjunctions here!
#
# YOUR SOLUTION HERE
return model
First we will create and print the model.
model = create_model()
model.pprint()
2 Set Declarations overlap_pairs : set of possible rectangle conflicts Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 2 : Any : 28 : {(0, 1), (0, 2), (0, 3), (0, 4), (0, 5), (0, 6), (0, 7), (1, 2), (1, 3), (1, 4), (1, 5), (1, 6), (1, 7), (2, 3), (2, 4), (2, 5), (2, 6), (2, 7), (3, 4), (3, 5), (3, 6), (3, 7), (4, 5), (4, 6), (4, 7), (5, 6), (5, 7), (6, 7)} rectangles : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 8 : {0, 1, 2, 3, 4, 5, 6, 7} 4 Param Declarations max_length : maximum length of the strip (if all rectangles were arranged lengthwise) Size=1, Index=None, Domain=Any, Default=None, Mutable=False Key : Value None : 25 rect_length : Size=8, Index=rectangles, Domain=Any, Default=None, Mutable=False Key : Value 0 : 4 1 : 3 2 : 2 3 : 2 4 : 3 5 : 3 6 : 4 7 : 4 rect_width : Size=8, Index=rectangles, Domain=Any, Default=None, Mutable=False Key : Value 0 : 3 1 : 3 2 : 2 3 : 2 4 : 3 5 : 5 6 : 7 7 : 7 strip_width : Available width of the strip Size=1, Index=None, Domain=Any, Default=None, Mutable=False Key : Value None : 10 3 Var Declarations strip_length : Length of strip required. Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : None : False : True : NonNegativeReals x : rectangle corner x-position (position across length) Size=8, Index=rectangles Key : Lower : Value : Upper : Fixed : Stale : Domain 0 : 0 : None : 25 : False : True : Reals 1 : 0 : None : 25 : False : True : Reals 2 : 0 : None : 25 : False : True : Reals 3 : 0 : None : 25 : False : True : Reals 4 : 0 : None : 25 : False : True : Reals 5 : 0 : None : 25 : False : True : Reals 6 : 0 : None : 25 : False : True : Reals 7 : 0 : None : 25 : False : True : Reals y : rectangle corner y-position (position down width) Size=8, Index=rectangles Key : Lower : Value : Upper : Fixed : Stale : Domain 0 : 0 : None : 7 : False : True : Reals 1 : 0 : None : 7 : False : True : Reals 2 : 0 : None : 8 : False : True : Reals 3 : 0 : None : 8 : False : True : Reals 4 : 0 : None : 7 : False : True : Reals 5 : 0 : None : 5 : False : True : Reals 6 : 0 : None : 3 : False : True : Reals 7 : 0 : None : 3 : False : True : Reals 1 Objective Declarations total_length : Minimize length Size=1, Index=None, Active=True Key : Active : Sense : Expression None : True : minimize : strip_length 1 Constraint Declarations strip_ends_after_last_rec : Size=8, Index=rectangles, Active=True Key : Lower : Body : Upper : Active 0 : -Inf : x[0] + 4 - strip_length : 0.0 : True 1 : -Inf : x[1] + 3 - strip_length : 0.0 : True 2 : -Inf : x[2] + 2 - strip_length : 0.0 : True 3 : -Inf : x[3] + 2 - strip_length : 0.0 : True 4 : -Inf : x[4] + 3 - strip_length : 0.0 : True 5 : -Inf : x[5] + 3 - strip_length : 0.0 : True 6 : -Inf : x[6] + 4 - strip_length : 0.0 : True 7 : -Inf : x[7] + 4 - strip_length : 0.0 : True 1 Disjunct Declarations no_overlap_disjuncts : Size=112, Index=Any, Active=True no_overlap_disjuncts[0] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[0].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[0].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[1] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[1].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[1].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[2] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[2].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[2].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[3] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[3].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[3].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[4] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[4].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[4].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[5] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[5].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[5].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[6] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[6].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[6].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[7] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[7].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[7].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[8] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[8].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[8].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[9] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[9].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[9].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[10] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[10].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[10].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[11] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[11].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[11].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[12] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[12].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[12].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[13] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[13].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[13].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[14] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[14].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[14].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[15] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[15].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[15].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[16] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[16].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[16].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[17] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[17].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[17].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[18] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[18].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[18].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[19] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[19].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[19].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[20] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[20].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[20].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[21] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[21].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[21].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[22] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[22].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[22].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[23] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[23].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[23].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[24] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[24].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[24].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[25] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[25].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[25].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[26] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[26].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[26].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[27] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[27].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[0] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[27].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[28] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[28].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[28].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[29] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[29].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[29].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[30] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[30].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[30].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[31] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[31].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[31].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[32] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[32].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[32].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[33] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[33].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[33].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[34] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[34].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[34].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[35] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[35].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[35].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[36] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[36].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[36].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[37] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[37].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[37].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[38] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[38].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[38].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[39] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[39].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[39].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[40] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[40].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[40].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[41] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[41].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[41].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[42] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[42].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[42].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[43] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[43].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[43].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[44] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[44].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[44].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[45] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[45].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[45].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[46] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[46].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[46].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[47] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[47].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[47].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[48] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[48].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[48].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[49] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[49].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[49].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[50] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[50].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[50].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[51] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[51].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[1] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[51].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[52] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[52].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[52].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[53] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[53].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[53].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[54] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[54].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[54].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[55] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[55].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[55].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[56] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[56].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[56].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[57] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[57].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[57].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[58] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[58].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[58].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[59] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[59].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[59].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[60] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[60].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[60].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[61] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[61].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[61].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[62] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[62].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[62].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[63] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[63].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[63].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[64] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[64].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[64].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[65] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[65].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[65].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[66] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[66].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[66].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[67] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[67].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[67].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[68] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[68].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[68].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[69] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[69].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[69].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[70] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[70].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[70].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[71] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[71].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[2] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[71].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[72] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[72].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[72].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[73] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[73].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[73].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[74] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[74].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[74].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[75] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[75].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[75].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[76] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[76].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[76].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[77] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[77].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[77].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[78] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[78].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[78].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[79] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[79].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[79].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[80] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[80].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[80].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[81] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[81].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[81].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[82] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[82].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[82].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[83] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[83].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[83].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[84] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[84].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[84].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[85] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[85].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[85].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[86] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[86].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[86].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[87] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[87].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[3] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[87].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[88] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[88].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[88].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[89] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[89].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[89].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[90] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[90].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[90].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[91] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[91].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[91].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[92] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[92].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[92].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[93] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[93].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[93].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[94] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[94].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[94].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[95] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[95].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[95].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[96] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[96].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[96].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[97] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[97].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[97].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[98] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[98].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[98].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[99] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[99].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[4] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[99].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[100] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[100].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[100].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[101] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[101].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[101].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[102] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[102].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[102].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[103] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[103].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[103].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[104] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[104].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[104].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[105] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[105].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[105].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[106] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[106].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[106].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[107] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[107].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[5] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[107].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[108] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[108].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[108].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[109] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[109].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[109].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[110] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[110].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[7] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[110].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[111] : Active=True 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[111].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[6] : 0.0 : True 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[111].propositions_index, Active=True Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions 1 Disjunction Declarations no_overlap : Make sure that none of the rectangles on the strip overlap in either the x or y dimensions. Size=28, Index=overlap_pairs, Active=True Key : Disjuncts : Active : XOR (0, 1) : ['no_overlap_disjuncts[0]', 'no_overlap_disjuncts[1]', 'no_overlap_disjuncts[2]', 'no_overlap_disjuncts[3]'] : True : True (0, 2) : ['no_overlap_disjuncts[4]', 'no_overlap_disjuncts[5]', 'no_overlap_disjuncts[6]', 'no_overlap_disjuncts[7]'] : True : True (0, 3) : ['no_overlap_disjuncts[8]', 'no_overlap_disjuncts[9]', 'no_overlap_disjuncts[10]', 'no_overlap_disjuncts[11]'] : True : True (0, 4) : ['no_overlap_disjuncts[12]', 'no_overlap_disjuncts[13]', 'no_overlap_disjuncts[14]', 'no_overlap_disjuncts[15]'] : True : True (0, 5) : ['no_overlap_disjuncts[16]', 'no_overlap_disjuncts[17]', 'no_overlap_disjuncts[18]', 'no_overlap_disjuncts[19]'] : True : True (0, 6) : ['no_overlap_disjuncts[20]', 'no_overlap_disjuncts[21]', 'no_overlap_disjuncts[22]', 'no_overlap_disjuncts[23]'] : True : True (0, 7) : ['no_overlap_disjuncts[24]', 'no_overlap_disjuncts[25]', 'no_overlap_disjuncts[26]', 'no_overlap_disjuncts[27]'] : True : True (1, 2) : ['no_overlap_disjuncts[28]', 'no_overlap_disjuncts[29]', 'no_overlap_disjuncts[30]', 'no_overlap_disjuncts[31]'] : True : True (1, 3) : ['no_overlap_disjuncts[32]', 'no_overlap_disjuncts[33]', 'no_overlap_disjuncts[34]', 'no_overlap_disjuncts[35]'] : True : True (1, 4) : ['no_overlap_disjuncts[36]', 'no_overlap_disjuncts[37]', 'no_overlap_disjuncts[38]', 'no_overlap_disjuncts[39]'] : True : True (1, 5) : ['no_overlap_disjuncts[40]', 'no_overlap_disjuncts[41]', 'no_overlap_disjuncts[42]', 'no_overlap_disjuncts[43]'] : True : True (1, 6) : ['no_overlap_disjuncts[44]', 'no_overlap_disjuncts[45]', 'no_overlap_disjuncts[46]', 'no_overlap_disjuncts[47]'] : True : True (1, 7) : ['no_overlap_disjuncts[48]', 'no_overlap_disjuncts[49]', 'no_overlap_disjuncts[50]', 'no_overlap_disjuncts[51]'] : True : True (2, 3) : ['no_overlap_disjuncts[52]', 'no_overlap_disjuncts[53]', 'no_overlap_disjuncts[54]', 'no_overlap_disjuncts[55]'] : True : True (2, 4) : ['no_overlap_disjuncts[56]', 'no_overlap_disjuncts[57]', 'no_overlap_disjuncts[58]', 'no_overlap_disjuncts[59]'] : True : True (2, 5) : ['no_overlap_disjuncts[60]', 'no_overlap_disjuncts[61]', 'no_overlap_disjuncts[62]', 'no_overlap_disjuncts[63]'] : True : True (2, 6) : ['no_overlap_disjuncts[64]', 'no_overlap_disjuncts[65]', 'no_overlap_disjuncts[66]', 'no_overlap_disjuncts[67]'] : True : True (2, 7) : ['no_overlap_disjuncts[68]', 'no_overlap_disjuncts[69]', 'no_overlap_disjuncts[70]', 'no_overlap_disjuncts[71]'] : True : True (3, 4) : ['no_overlap_disjuncts[72]', 'no_overlap_disjuncts[73]', 'no_overlap_disjuncts[74]', 'no_overlap_disjuncts[75]'] : True : True (3, 5) : ['no_overlap_disjuncts[76]', 'no_overlap_disjuncts[77]', 'no_overlap_disjuncts[78]', 'no_overlap_disjuncts[79]'] : True : True (3, 6) : ['no_overlap_disjuncts[80]', 'no_overlap_disjuncts[81]', 'no_overlap_disjuncts[82]', 'no_overlap_disjuncts[83]'] : True : True (3, 7) : ['no_overlap_disjuncts[84]', 'no_overlap_disjuncts[85]', 'no_overlap_disjuncts[86]', 'no_overlap_disjuncts[87]'] : True : True (4, 5) : ['no_overlap_disjuncts[88]', 'no_overlap_disjuncts[89]', 'no_overlap_disjuncts[90]', 'no_overlap_disjuncts[91]'] : True : True (4, 6) : ['no_overlap_disjuncts[92]', 'no_overlap_disjuncts[93]', 'no_overlap_disjuncts[94]', 'no_overlap_disjuncts[95]'] : True : True (4, 7) : ['no_overlap_disjuncts[96]', 'no_overlap_disjuncts[97]', 'no_overlap_disjuncts[98]', 'no_overlap_disjuncts[99]'] : True : True (5, 6) : ['no_overlap_disjuncts[100]', 'no_overlap_disjuncts[101]', 'no_overlap_disjuncts[102]', 'no_overlap_disjuncts[103]'] : True : True (5, 7) : ['no_overlap_disjuncts[104]', 'no_overlap_disjuncts[105]', 'no_overlap_disjuncts[106]', 'no_overlap_disjuncts[107]'] : True : True (6, 7) : ['no_overlap_disjuncts[108]', 'no_overlap_disjuncts[109]', 'no_overlap_disjuncts[110]', 'no_overlap_disjuncts[111]'] : True : True 13 Declarations: rectangles rect_width rect_length strip_width max_length x y strip_length overlap_pairs strip_ends_after_last_rec total_length no_overlap no_overlap_disjuncts
Next, let's transform and print the model again. The updated model is really big. This is because the transformation factory replaced the disjunctions with many Big M constraints.
# YOUR SOLUTION HERE
model.pprint()
2 Set Declarations overlap_pairs : set of possible rectangle conflicts Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 2 : Any : 28 : {(0, 1), (0, 2), (0, 3), (0, 4), (0, 5), (0, 6), (0, 7), (1, 2), (1, 3), (1, 4), (1, 5), (1, 6), (1, 7), (2, 3), (2, 4), (2, 5), (2, 6), (2, 7), (3, 4), (3, 5), (3, 6), (3, 7), (4, 5), (4, 6), (4, 7), (5, 6), (5, 7), (6, 7)} rectangles : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 8 : {0, 1, 2, 3, 4, 5, 6, 7} 4 Param Declarations max_length : maximum length of the strip (if all rectangles were arranged lengthwise) Size=1, Index=None, Domain=Any, Default=None, Mutable=False Key : Value None : 25 rect_length : Size=8, Index=rectangles, Domain=Any, Default=None, Mutable=False Key : Value 0 : 4 1 : 3 2 : 2 3 : 2 4 : 3 5 : 3 6 : 4 7 : 4 rect_width : Size=8, Index=rectangles, Domain=Any, Default=None, Mutable=False Key : Value 0 : 3 1 : 3 2 : 2 3 : 2 4 : 3 5 : 5 6 : 7 7 : 7 strip_width : Available width of the strip Size=1, Index=None, Domain=Any, Default=None, Mutable=False Key : Value None : 10 3 Var Declarations strip_length : Length of strip required. Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : None : False : True : NonNegativeReals x : rectangle corner x-position (position across length) Size=8, Index=rectangles Key : Lower : Value : Upper : Fixed : Stale : Domain 0 : 0 : None : 25 : False : True : Reals 1 : 0 : None : 25 : False : True : Reals 2 : 0 : None : 25 : False : True : Reals 3 : 0 : None : 25 : False : True : Reals 4 : 0 : None : 25 : False : True : Reals 5 : 0 : None : 25 : False : True : Reals 6 : 0 : None : 25 : False : True : Reals 7 : 0 : None : 25 : False : True : Reals y : rectangle corner y-position (position down width) Size=8, Index=rectangles Key : Lower : Value : Upper : Fixed : Stale : Domain 0 : 0 : None : 7 : False : True : Reals 1 : 0 : None : 7 : False : True : Reals 2 : 0 : None : 8 : False : True : Reals 3 : 0 : None : 8 : False : True : Reals 4 : 0 : None : 7 : False : True : Reals 5 : 0 : None : 5 : False : True : Reals 6 : 0 : None : 3 : False : True : Reals 7 : 0 : None : 3 : False : True : Reals 1 Objective Declarations total_length : Minimize length Size=1, Index=None, Active=True Key : Active : Sense : Expression None : True : minimize : strip_length 1 Constraint Declarations strip_ends_after_last_rec : Size=8, Index=rectangles, Active=True Key : Lower : Body : Upper : Active 0 : -Inf : x[0] + 4 - strip_length : 0.0 : True 1 : -Inf : x[1] + 3 - strip_length : 0.0 : True 2 : -Inf : x[2] + 2 - strip_length : 0.0 : True 3 : -Inf : x[3] + 2 - strip_length : 0.0 : True 4 : -Inf : x[4] + 3 - strip_length : 0.0 : True 5 : -Inf : x[5] + 3 - strip_length : 0.0 : True 6 : -Inf : x[6] + 4 - strip_length : 0.0 : True 7 : -Inf : x[7] + 4 - strip_length : 0.0 : True 1 Block Declarations _pyomo_gdp_bigm_reformulation : Size=1, Index=None, Active=True 1 Set Declarations lbub : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 2 : {'lb', 'ub'} 1 Constraint Declarations no_overlap_xor : Size=28, Index=overlap_pairs, Active=True Key : Lower : Body : Upper : Active (0, 1) : 1.0 : no_overlap_disjuncts[0].indicator_var + no_overlap_disjuncts[1].indicator_var + no_overlap_disjuncts[2].indicator_var + no_overlap_disjuncts[3].indicator_var : 1.0 : True (0, 2) : 1.0 : no_overlap_disjuncts[4].indicator_var + no_overlap_disjuncts[5].indicator_var + no_overlap_disjuncts[6].indicator_var + no_overlap_disjuncts[7].indicator_var : 1.0 : True (0, 3) : 1.0 : no_overlap_disjuncts[8].indicator_var + no_overlap_disjuncts[9].indicator_var + no_overlap_disjuncts[10].indicator_var + no_overlap_disjuncts[11].indicator_var : 1.0 : True (0, 4) : 1.0 : no_overlap_disjuncts[12].indicator_var + no_overlap_disjuncts[13].indicator_var + no_overlap_disjuncts[14].indicator_var + no_overlap_disjuncts[15].indicator_var : 1.0 : True (0, 5) : 1.0 : no_overlap_disjuncts[16].indicator_var + no_overlap_disjuncts[17].indicator_var + no_overlap_disjuncts[18].indicator_var + no_overlap_disjuncts[19].indicator_var : 1.0 : True (0, 6) : 1.0 : no_overlap_disjuncts[20].indicator_var + no_overlap_disjuncts[21].indicator_var + no_overlap_disjuncts[22].indicator_var + no_overlap_disjuncts[23].indicator_var : 1.0 : True (0, 7) : 1.0 : no_overlap_disjuncts[24].indicator_var + no_overlap_disjuncts[25].indicator_var + no_overlap_disjuncts[26].indicator_var + no_overlap_disjuncts[27].indicator_var : 1.0 : True (1, 2) : 1.0 : no_overlap_disjuncts[28].indicator_var + no_overlap_disjuncts[29].indicator_var + no_overlap_disjuncts[30].indicator_var + no_overlap_disjuncts[31].indicator_var : 1.0 : True (1, 3) : 1.0 : no_overlap_disjuncts[32].indicator_var + no_overlap_disjuncts[33].indicator_var + no_overlap_disjuncts[34].indicator_var + no_overlap_disjuncts[35].indicator_var : 1.0 : True (1, 4) : 1.0 : no_overlap_disjuncts[36].indicator_var + no_overlap_disjuncts[37].indicator_var + no_overlap_disjuncts[38].indicator_var + no_overlap_disjuncts[39].indicator_var : 1.0 : True (1, 5) : 1.0 : no_overlap_disjuncts[40].indicator_var + no_overlap_disjuncts[41].indicator_var + no_overlap_disjuncts[42].indicator_var + no_overlap_disjuncts[43].indicator_var : 1.0 : True (1, 6) : 1.0 : no_overlap_disjuncts[44].indicator_var + no_overlap_disjuncts[45].indicator_var + no_overlap_disjuncts[46].indicator_var + no_overlap_disjuncts[47].indicator_var : 1.0 : True (1, 7) : 1.0 : no_overlap_disjuncts[48].indicator_var + no_overlap_disjuncts[49].indicator_var + no_overlap_disjuncts[50].indicator_var + no_overlap_disjuncts[51].indicator_var : 1.0 : True (2, 3) : 1.0 : no_overlap_disjuncts[52].indicator_var + no_overlap_disjuncts[53].indicator_var + no_overlap_disjuncts[54].indicator_var + no_overlap_disjuncts[55].indicator_var : 1.0 : True (2, 4) : 1.0 : no_overlap_disjuncts[56].indicator_var + no_overlap_disjuncts[57].indicator_var + no_overlap_disjuncts[58].indicator_var + no_overlap_disjuncts[59].indicator_var : 1.0 : True (2, 5) : 1.0 : no_overlap_disjuncts[60].indicator_var + no_overlap_disjuncts[61].indicator_var + no_overlap_disjuncts[62].indicator_var + no_overlap_disjuncts[63].indicator_var : 1.0 : True (2, 6) : 1.0 : no_overlap_disjuncts[64].indicator_var + no_overlap_disjuncts[65].indicator_var + no_overlap_disjuncts[66].indicator_var + no_overlap_disjuncts[67].indicator_var : 1.0 : True (2, 7) : 1.0 : no_overlap_disjuncts[68].indicator_var + no_overlap_disjuncts[69].indicator_var + no_overlap_disjuncts[70].indicator_var + no_overlap_disjuncts[71].indicator_var : 1.0 : True (3, 4) : 1.0 : no_overlap_disjuncts[72].indicator_var + no_overlap_disjuncts[73].indicator_var + no_overlap_disjuncts[74].indicator_var + no_overlap_disjuncts[75].indicator_var : 1.0 : True (3, 5) : 1.0 : no_overlap_disjuncts[76].indicator_var + no_overlap_disjuncts[77].indicator_var + no_overlap_disjuncts[78].indicator_var + no_overlap_disjuncts[79].indicator_var : 1.0 : True (3, 6) : 1.0 : no_overlap_disjuncts[80].indicator_var + no_overlap_disjuncts[81].indicator_var + no_overlap_disjuncts[82].indicator_var + no_overlap_disjuncts[83].indicator_var : 1.0 : True (3, 7) : 1.0 : no_overlap_disjuncts[84].indicator_var + no_overlap_disjuncts[85].indicator_var + no_overlap_disjuncts[86].indicator_var + no_overlap_disjuncts[87].indicator_var : 1.0 : True (4, 5) : 1.0 : no_overlap_disjuncts[88].indicator_var + no_overlap_disjuncts[89].indicator_var + no_overlap_disjuncts[90].indicator_var + no_overlap_disjuncts[91].indicator_var : 1.0 : True (4, 6) : 1.0 : no_overlap_disjuncts[92].indicator_var + no_overlap_disjuncts[93].indicator_var + no_overlap_disjuncts[94].indicator_var + no_overlap_disjuncts[95].indicator_var : 1.0 : True (4, 7) : 1.0 : no_overlap_disjuncts[96].indicator_var + no_overlap_disjuncts[97].indicator_var + no_overlap_disjuncts[98].indicator_var + no_overlap_disjuncts[99].indicator_var : 1.0 : True (5, 6) : 1.0 : no_overlap_disjuncts[100].indicator_var + no_overlap_disjuncts[101].indicator_var + no_overlap_disjuncts[102].indicator_var + no_overlap_disjuncts[103].indicator_var : 1.0 : True (5, 7) : 1.0 : no_overlap_disjuncts[104].indicator_var + no_overlap_disjuncts[105].indicator_var + no_overlap_disjuncts[106].indicator_var + no_overlap_disjuncts[107].indicator_var : 1.0 : True (6, 7) : 1.0 : no_overlap_disjuncts[108].indicator_var + no_overlap_disjuncts[109].indicator_var + no_overlap_disjuncts[110].indicator_var + no_overlap_disjuncts[111].indicator_var : 1.0 : True 1 Block Declarations relaxedDisjuncts : Size=112, Index=NonNegativeIntegers, Active=True _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[0] : Active=True 1 Set Declarations no_overlap_disjuncts[0].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[0].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[0].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[0].no_overlap_disjuncts[0].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[0] + 4 - x[1] - 29.0*(1 - no_overlap_disjuncts[0].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[0].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[0].localVarReferences.no_overlap_disjuncts[0].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[0].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[0].indicator_var_index no_overlap_disjuncts[0].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[0].constraint_index no_overlap_disjuncts[0].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[1] : Active=True 1 Set Declarations no_overlap_disjuncts[1].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[1].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[1].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[1].no_overlap_disjuncts[1].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[1] + 3 - x[0] - 28.0*(1 - no_overlap_disjuncts[1].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[1].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[1].localVarReferences.no_overlap_disjuncts[1].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[1].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[1].indicator_var_index no_overlap_disjuncts[1].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[1].constraint_index no_overlap_disjuncts[1].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[2] : Active=True 1 Set Declarations no_overlap_disjuncts[2].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[2].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[2].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[2].no_overlap_disjuncts[2].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[0] + 3 - y[1] - 10.0*(1 - no_overlap_disjuncts[2].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[2].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[2].localVarReferences.no_overlap_disjuncts[2].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[2].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[2].indicator_var_index no_overlap_disjuncts[2].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[2].constraint_index no_overlap_disjuncts[2].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[3] : Active=True 1 Set Declarations no_overlap_disjuncts[3].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[3].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[3].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[3].no_overlap_disjuncts[3].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[1] + 3 - y[0] - 10.0*(1 - no_overlap_disjuncts[3].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[3].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[3].localVarReferences.no_overlap_disjuncts[3].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[3].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[3].indicator_var_index no_overlap_disjuncts[3].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[3].constraint_index no_overlap_disjuncts[3].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[4] : Active=True 1 Set Declarations no_overlap_disjuncts[4].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[4].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[4].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[4].no_overlap_disjuncts[4].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[0] + 4 - x[2] - 29.0*(1 - no_overlap_disjuncts[4].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[4].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[4].localVarReferences.no_overlap_disjuncts[4].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[4].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[4].indicator_var_index no_overlap_disjuncts[4].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[4].constraint_index no_overlap_disjuncts[4].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[5] : Active=True 1 Set Declarations no_overlap_disjuncts[5].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[5].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[5].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[5].no_overlap_disjuncts[5].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[2] + 2 - x[0] - 27.0*(1 - no_overlap_disjuncts[5].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[5].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[5].localVarReferences.no_overlap_disjuncts[5].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[5].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[5].indicator_var_index no_overlap_disjuncts[5].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[5].constraint_index no_overlap_disjuncts[5].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[6] : Active=True 1 Set Declarations no_overlap_disjuncts[6].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[6].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[6].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[6].no_overlap_disjuncts[6].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[0] + 3 - y[2] - 10.0*(1 - no_overlap_disjuncts[6].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[6].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[6].localVarReferences.no_overlap_disjuncts[6].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[6].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[6].indicator_var_index no_overlap_disjuncts[6].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[6].constraint_index no_overlap_disjuncts[6].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[7] : Active=True 1 Set Declarations no_overlap_disjuncts[7].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[7].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[7].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[7].no_overlap_disjuncts[7].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[2] + 2 - y[0] - 10.0*(1 - no_overlap_disjuncts[7].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[7].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[7].localVarReferences.no_overlap_disjuncts[7].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[7].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[7].indicator_var_index no_overlap_disjuncts[7].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[7].constraint_index no_overlap_disjuncts[7].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[8] : Active=True 1 Set Declarations no_overlap_disjuncts[8].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[8].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[8].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[8].no_overlap_disjuncts[8].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[0] + 4 - x[3] - 29.0*(1 - no_overlap_disjuncts[8].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[8].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[8].localVarReferences.no_overlap_disjuncts[8].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[8].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[8].indicator_var_index no_overlap_disjuncts[8].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[8].constraint_index no_overlap_disjuncts[8].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[9] : Active=True 1 Set Declarations no_overlap_disjuncts[9].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[9].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[9].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[9].no_overlap_disjuncts[9].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[3] + 2 - x[0] - 27.0*(1 - no_overlap_disjuncts[9].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[9].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[9].localVarReferences.no_overlap_disjuncts[9].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[9].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[9].indicator_var_index no_overlap_disjuncts[9].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[9].constraint_index no_overlap_disjuncts[9].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[10] : Active=True 1 Set Declarations no_overlap_disjuncts[10].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[10].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[10].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[10].no_overlap_disjuncts[10].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[0] + 3 - y[3] - 10.0*(1 - no_overlap_disjuncts[10].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[10].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[10].localVarReferences.no_overlap_disjuncts[10].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[10].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[10].indicator_var_index no_overlap_disjuncts[10].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[10].constraint_index no_overlap_disjuncts[10].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[11] : Active=True 1 Set Declarations no_overlap_disjuncts[11].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[11].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[11].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[11].no_overlap_disjuncts[11].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[3] + 2 - y[0] - 10.0*(1 - no_overlap_disjuncts[11].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[11].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[11].localVarReferences.no_overlap_disjuncts[11].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[11].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[11].indicator_var_index no_overlap_disjuncts[11].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[11].constraint_index no_overlap_disjuncts[11].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[12] : Active=True 1 Set Declarations no_overlap_disjuncts[12].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[12].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[12].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[12].no_overlap_disjuncts[12].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[0] + 4 - x[4] - 29.0*(1 - no_overlap_disjuncts[12].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[12].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[12].localVarReferences.no_overlap_disjuncts[12].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[12].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[12].indicator_var_index no_overlap_disjuncts[12].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[12].constraint_index no_overlap_disjuncts[12].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[13] : Active=True 1 Set Declarations no_overlap_disjuncts[13].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[13].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[13].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[13].no_overlap_disjuncts[13].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[4] + 3 - x[0] - 28.0*(1 - no_overlap_disjuncts[13].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[13].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[13].localVarReferences.no_overlap_disjuncts[13].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[13].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[13].indicator_var_index no_overlap_disjuncts[13].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[13].constraint_index no_overlap_disjuncts[13].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[14] : Active=True 1 Set Declarations no_overlap_disjuncts[14].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[14].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[14].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[14].no_overlap_disjuncts[14].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[0] + 3 - y[4] - 10.0*(1 - no_overlap_disjuncts[14].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[14].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[14].localVarReferences.no_overlap_disjuncts[14].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[14].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[14].indicator_var_index no_overlap_disjuncts[14].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[14].constraint_index no_overlap_disjuncts[14].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[15] : Active=True 1 Set Declarations no_overlap_disjuncts[15].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[15].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[15].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[15].no_overlap_disjuncts[15].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[4] + 3 - y[0] - 10.0*(1 - no_overlap_disjuncts[15].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[15].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[15].localVarReferences.no_overlap_disjuncts[15].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[15].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[15].indicator_var_index no_overlap_disjuncts[15].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[15].constraint_index no_overlap_disjuncts[15].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[16] : Active=True 1 Set Declarations no_overlap_disjuncts[16].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[16].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[16].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[16].no_overlap_disjuncts[16].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[0] + 4 - x[5] - 29.0*(1 - no_overlap_disjuncts[16].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[16].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[16].localVarReferences.no_overlap_disjuncts[16].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[16].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[16].indicator_var_index no_overlap_disjuncts[16].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[16].constraint_index no_overlap_disjuncts[16].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[17] : Active=True 1 Set Declarations no_overlap_disjuncts[17].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[17].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[17].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[17].no_overlap_disjuncts[17].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[5] + 3 - x[0] - 28.0*(1 - no_overlap_disjuncts[17].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[17].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[17].localVarReferences.no_overlap_disjuncts[17].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[17].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[17].indicator_var_index no_overlap_disjuncts[17].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[17].constraint_index no_overlap_disjuncts[17].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[18] : Active=True 1 Set Declarations no_overlap_disjuncts[18].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[18].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[18].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[18].no_overlap_disjuncts[18].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[0] + 3 - y[5] - 10.0*(1 - no_overlap_disjuncts[18].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[18].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[18].localVarReferences.no_overlap_disjuncts[18].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[18].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[18].indicator_var_index no_overlap_disjuncts[18].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[18].constraint_index no_overlap_disjuncts[18].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[19] : Active=True 1 Set Declarations no_overlap_disjuncts[19].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[19].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[19].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[19].no_overlap_disjuncts[19].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[5] + 5 - y[0] - 10.0*(1 - no_overlap_disjuncts[19].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[19].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[19].localVarReferences.no_overlap_disjuncts[19].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[19].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[19].indicator_var_index no_overlap_disjuncts[19].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[19].constraint_index no_overlap_disjuncts[19].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[20] : Active=True 1 Set Declarations no_overlap_disjuncts[20].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[20].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[20].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[20].no_overlap_disjuncts[20].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[0] + 4 - x[6] - 29.0*(1 - no_overlap_disjuncts[20].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[20].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[20].localVarReferences.no_overlap_disjuncts[20].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[20].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[20].indicator_var_index no_overlap_disjuncts[20].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[20].constraint_index no_overlap_disjuncts[20].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[21] : Active=True 1 Set Declarations no_overlap_disjuncts[21].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[21].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[21].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[21].no_overlap_disjuncts[21].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[6] + 4 - x[0] - 29.0*(1 - no_overlap_disjuncts[21].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[21].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[21].localVarReferences.no_overlap_disjuncts[21].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[21].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[21].indicator_var_index no_overlap_disjuncts[21].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[21].constraint_index no_overlap_disjuncts[21].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[22] : Active=True 1 Set Declarations no_overlap_disjuncts[22].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[22].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[22].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[22].no_overlap_disjuncts[22].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[0] + 3 - y[6] - 10.0*(1 - no_overlap_disjuncts[22].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[22].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[22].localVarReferences.no_overlap_disjuncts[22].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[22].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[22].indicator_var_index no_overlap_disjuncts[22].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[22].constraint_index no_overlap_disjuncts[22].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[23] : Active=True 1 Set Declarations no_overlap_disjuncts[23].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[23].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[23].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[23].no_overlap_disjuncts[23].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[6] + 7 - y[0] - 10.0*(1 - no_overlap_disjuncts[23].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[23].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[23].localVarReferences.no_overlap_disjuncts[23].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[23].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[23].indicator_var_index no_overlap_disjuncts[23].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[23].constraint_index no_overlap_disjuncts[23].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[24] : Active=True 1 Set Declarations no_overlap_disjuncts[24].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[24].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[24].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[24].no_overlap_disjuncts[24].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[0] + 4 - x[7] - 29.0*(1 - no_overlap_disjuncts[24].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[24].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[24].localVarReferences.no_overlap_disjuncts[24].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[24].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[24].indicator_var_index no_overlap_disjuncts[24].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[24].constraint_index no_overlap_disjuncts[24].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[25] : Active=True 1 Set Declarations no_overlap_disjuncts[25].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[25].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[25].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[25].no_overlap_disjuncts[25].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[7] + 4 - x[0] - 29.0*(1 - no_overlap_disjuncts[25].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[25].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[25].localVarReferences.no_overlap_disjuncts[25].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[25].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[25].indicator_var_index no_overlap_disjuncts[25].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[25].constraint_index no_overlap_disjuncts[25].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[26] : Active=True 1 Set Declarations no_overlap_disjuncts[26].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[26].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[26].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[26].no_overlap_disjuncts[26].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[0] + 3 - y[7] - 10.0*(1 - no_overlap_disjuncts[26].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[26].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[26].localVarReferences.no_overlap_disjuncts[26].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[26].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[26].indicator_var_index no_overlap_disjuncts[26].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[26].constraint_index no_overlap_disjuncts[26].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[27] : Active=True 1 Set Declarations no_overlap_disjuncts[27].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[27].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[27].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[27].no_overlap_disjuncts[27].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[7] + 7 - y[0] - 10.0*(1 - no_overlap_disjuncts[27].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[27].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[27].localVarReferences.no_overlap_disjuncts[27].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[27].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[27].indicator_var_index no_overlap_disjuncts[27].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[27].constraint_index no_overlap_disjuncts[27].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[28] : Active=True 1 Set Declarations no_overlap_disjuncts[28].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[28].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[28].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[28].no_overlap_disjuncts[28].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[1] + 3 - x[2] - 28.0*(1 - no_overlap_disjuncts[28].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[28].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[28].localVarReferences.no_overlap_disjuncts[28].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[28].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[28].indicator_var_index no_overlap_disjuncts[28].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[28].constraint_index no_overlap_disjuncts[28].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[29] : Active=True 1 Set Declarations no_overlap_disjuncts[29].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[29].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[29].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[29].no_overlap_disjuncts[29].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[2] + 2 - x[1] - 27.0*(1 - no_overlap_disjuncts[29].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[29].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[29].localVarReferences.no_overlap_disjuncts[29].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[29].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[29].indicator_var_index no_overlap_disjuncts[29].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[29].constraint_index no_overlap_disjuncts[29].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[30] : Active=True 1 Set Declarations no_overlap_disjuncts[30].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[30].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[30].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[30].no_overlap_disjuncts[30].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[1] + 3 - y[2] - 10.0*(1 - no_overlap_disjuncts[30].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[30].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[30].localVarReferences.no_overlap_disjuncts[30].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[30].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[30].indicator_var_index no_overlap_disjuncts[30].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[30].constraint_index no_overlap_disjuncts[30].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[31] : Active=True 1 Set Declarations no_overlap_disjuncts[31].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[31].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[31].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[31].no_overlap_disjuncts[31].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[2] + 2 - y[1] - 10.0*(1 - no_overlap_disjuncts[31].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[31].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[31].localVarReferences.no_overlap_disjuncts[31].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[31].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[31].indicator_var_index no_overlap_disjuncts[31].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[31].constraint_index no_overlap_disjuncts[31].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[32] : Active=True 1 Set Declarations no_overlap_disjuncts[32].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[32].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[32].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[32].no_overlap_disjuncts[32].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[1] + 3 - x[3] - 28.0*(1 - no_overlap_disjuncts[32].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[32].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[32].localVarReferences.no_overlap_disjuncts[32].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[32].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[32].indicator_var_index no_overlap_disjuncts[32].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[32].constraint_index no_overlap_disjuncts[32].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[33] : Active=True 1 Set Declarations no_overlap_disjuncts[33].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[33].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[33].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[33].no_overlap_disjuncts[33].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[3] + 2 - x[1] - 27.0*(1 - no_overlap_disjuncts[33].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[33].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[33].localVarReferences.no_overlap_disjuncts[33].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[33].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[33].indicator_var_index no_overlap_disjuncts[33].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[33].constraint_index no_overlap_disjuncts[33].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[34] : Active=True 1 Set Declarations no_overlap_disjuncts[34].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[34].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[34].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[34].no_overlap_disjuncts[34].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[1] + 3 - y[3] - 10.0*(1 - no_overlap_disjuncts[34].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[34].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[34].localVarReferences.no_overlap_disjuncts[34].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[34].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[34].indicator_var_index no_overlap_disjuncts[34].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[34].constraint_index no_overlap_disjuncts[34].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[35] : Active=True 1 Set Declarations no_overlap_disjuncts[35].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[35].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[35].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[35].no_overlap_disjuncts[35].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[3] + 2 - y[1] - 10.0*(1 - no_overlap_disjuncts[35].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[35].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[35].localVarReferences.no_overlap_disjuncts[35].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[35].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[35].indicator_var_index no_overlap_disjuncts[35].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[35].constraint_index no_overlap_disjuncts[35].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[36] : Active=True 1 Set Declarations no_overlap_disjuncts[36].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[36].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[36].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[36].no_overlap_disjuncts[36].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[1] + 3 - x[4] - 28.0*(1 - no_overlap_disjuncts[36].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[36].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[36].localVarReferences.no_overlap_disjuncts[36].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[36].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[36].indicator_var_index no_overlap_disjuncts[36].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[36].constraint_index no_overlap_disjuncts[36].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[37] : Active=True 1 Set Declarations no_overlap_disjuncts[37].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[37].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[37].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[37].no_overlap_disjuncts[37].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[4] + 3 - x[1] - 28.0*(1 - no_overlap_disjuncts[37].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[37].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[37].localVarReferences.no_overlap_disjuncts[37].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[37].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[37].indicator_var_index no_overlap_disjuncts[37].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[37].constraint_index no_overlap_disjuncts[37].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[38] : Active=True 1 Set Declarations no_overlap_disjuncts[38].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[38].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[38].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[38].no_overlap_disjuncts[38].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[1] + 3 - y[4] - 10.0*(1 - no_overlap_disjuncts[38].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[38].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[38].localVarReferences.no_overlap_disjuncts[38].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[38].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[38].indicator_var_index no_overlap_disjuncts[38].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[38].constraint_index no_overlap_disjuncts[38].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[39] : Active=True 1 Set Declarations no_overlap_disjuncts[39].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[39].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[39].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[39].no_overlap_disjuncts[39].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[4] + 3 - y[1] - 10.0*(1 - no_overlap_disjuncts[39].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[39].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[39].localVarReferences.no_overlap_disjuncts[39].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[39].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[39].indicator_var_index no_overlap_disjuncts[39].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[39].constraint_index no_overlap_disjuncts[39].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[40] : Active=True 1 Set Declarations no_overlap_disjuncts[40].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[40].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[40].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[40].no_overlap_disjuncts[40].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[1] + 3 - x[5] - 28.0*(1 - no_overlap_disjuncts[40].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[40].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[40].localVarReferences.no_overlap_disjuncts[40].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[40].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[40].indicator_var_index no_overlap_disjuncts[40].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[40].constraint_index no_overlap_disjuncts[40].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[41] : Active=True 1 Set Declarations no_overlap_disjuncts[41].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[41].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[41].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[41].no_overlap_disjuncts[41].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[5] + 3 - x[1] - 28.0*(1 - no_overlap_disjuncts[41].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[41].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[41].localVarReferences.no_overlap_disjuncts[41].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[41].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[41].indicator_var_index no_overlap_disjuncts[41].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[41].constraint_index no_overlap_disjuncts[41].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[42] : Active=True 1 Set Declarations no_overlap_disjuncts[42].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[42].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[42].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[42].no_overlap_disjuncts[42].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[1] + 3 - y[5] - 10.0*(1 - no_overlap_disjuncts[42].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[42].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[42].localVarReferences.no_overlap_disjuncts[42].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[42].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[42].indicator_var_index no_overlap_disjuncts[42].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[42].constraint_index no_overlap_disjuncts[42].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[43] : Active=True 1 Set Declarations no_overlap_disjuncts[43].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[43].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[43].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[43].no_overlap_disjuncts[43].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[5] + 5 - y[1] - 10.0*(1 - no_overlap_disjuncts[43].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[43].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[43].localVarReferences.no_overlap_disjuncts[43].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[43].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[43].indicator_var_index no_overlap_disjuncts[43].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[43].constraint_index no_overlap_disjuncts[43].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[44] : Active=True 1 Set Declarations no_overlap_disjuncts[44].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[44].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[44].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[44].no_overlap_disjuncts[44].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[1] + 3 - x[6] - 28.0*(1 - no_overlap_disjuncts[44].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[44].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[44].localVarReferences.no_overlap_disjuncts[44].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[44].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[44].indicator_var_index no_overlap_disjuncts[44].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[44].constraint_index no_overlap_disjuncts[44].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[45] : Active=True 1 Set Declarations no_overlap_disjuncts[45].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[45].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[45].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[45].no_overlap_disjuncts[45].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[6] + 4 - x[1] - 29.0*(1 - no_overlap_disjuncts[45].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[45].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[45].localVarReferences.no_overlap_disjuncts[45].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[45].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[45].indicator_var_index no_overlap_disjuncts[45].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[45].constraint_index no_overlap_disjuncts[45].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[46] : Active=True 1 Set Declarations no_overlap_disjuncts[46].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[46].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[46].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[46].no_overlap_disjuncts[46].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[1] + 3 - y[6] - 10.0*(1 - no_overlap_disjuncts[46].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[46].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[46].localVarReferences.no_overlap_disjuncts[46].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[46].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[46].indicator_var_index no_overlap_disjuncts[46].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[46].constraint_index no_overlap_disjuncts[46].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[47] : Active=True 1 Set Declarations no_overlap_disjuncts[47].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[47].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[47].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[47].no_overlap_disjuncts[47].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[6] + 7 - y[1] - 10.0*(1 - no_overlap_disjuncts[47].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[47].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[47].localVarReferences.no_overlap_disjuncts[47].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[47].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[47].indicator_var_index no_overlap_disjuncts[47].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[47].constraint_index no_overlap_disjuncts[47].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[48] : Active=True 1 Set Declarations no_overlap_disjuncts[48].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[48].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[48].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[48].no_overlap_disjuncts[48].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[1] + 3 - x[7] - 28.0*(1 - no_overlap_disjuncts[48].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[48].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[48].localVarReferences.no_overlap_disjuncts[48].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[48].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[48].indicator_var_index no_overlap_disjuncts[48].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[48].constraint_index no_overlap_disjuncts[48].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[49] : Active=True 1 Set Declarations no_overlap_disjuncts[49].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[49].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[49].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[49].no_overlap_disjuncts[49].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[7] + 4 - x[1] - 29.0*(1 - no_overlap_disjuncts[49].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[49].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[49].localVarReferences.no_overlap_disjuncts[49].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[49].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[49].indicator_var_index no_overlap_disjuncts[49].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[49].constraint_index no_overlap_disjuncts[49].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[50] : Active=True 1 Set Declarations no_overlap_disjuncts[50].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[50].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[50].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[50].no_overlap_disjuncts[50].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[1] + 3 - y[7] - 10.0*(1 - no_overlap_disjuncts[50].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[50].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[50].localVarReferences.no_overlap_disjuncts[50].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[50].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[50].indicator_var_index no_overlap_disjuncts[50].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[50].constraint_index no_overlap_disjuncts[50].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[51] : Active=True 1 Set Declarations no_overlap_disjuncts[51].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[51].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[51].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[51].no_overlap_disjuncts[51].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[7] + 7 - y[1] - 10.0*(1 - no_overlap_disjuncts[51].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[51].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[51].localVarReferences.no_overlap_disjuncts[51].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[51].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[51].indicator_var_index no_overlap_disjuncts[51].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[51].constraint_index no_overlap_disjuncts[51].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[52] : Active=True 1 Set Declarations no_overlap_disjuncts[52].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[52].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[52].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[52].no_overlap_disjuncts[52].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[2] + 2 - x[3] - 27.0*(1 - no_overlap_disjuncts[52].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[52].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[52].localVarReferences.no_overlap_disjuncts[52].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[52].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[52].indicator_var_index no_overlap_disjuncts[52].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[52].constraint_index no_overlap_disjuncts[52].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[53] : Active=True 1 Set Declarations no_overlap_disjuncts[53].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[53].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[53].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[53].no_overlap_disjuncts[53].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[3] + 2 - x[2] - 27.0*(1 - no_overlap_disjuncts[53].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[53].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[53].localVarReferences.no_overlap_disjuncts[53].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[53].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[53].indicator_var_index no_overlap_disjuncts[53].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[53].constraint_index no_overlap_disjuncts[53].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[54] : Active=True 1 Set Declarations no_overlap_disjuncts[54].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[54].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[54].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[54].no_overlap_disjuncts[54].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[2] + 2 - y[3] - 10.0*(1 - no_overlap_disjuncts[54].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[54].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[54].localVarReferences.no_overlap_disjuncts[54].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[54].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[54].indicator_var_index no_overlap_disjuncts[54].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[54].constraint_index no_overlap_disjuncts[54].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[55] : Active=True 1 Set Declarations no_overlap_disjuncts[55].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[55].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[55].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[55].no_overlap_disjuncts[55].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[3] + 2 - y[2] - 10.0*(1 - no_overlap_disjuncts[55].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[55].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[55].localVarReferences.no_overlap_disjuncts[55].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[55].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[55].indicator_var_index no_overlap_disjuncts[55].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[55].constraint_index no_overlap_disjuncts[55].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[56] : Active=True 1 Set Declarations no_overlap_disjuncts[56].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[56].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[56].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[56].no_overlap_disjuncts[56].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[2] + 2 - x[4] - 27.0*(1 - no_overlap_disjuncts[56].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[56].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[56].localVarReferences.no_overlap_disjuncts[56].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[56].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[56].indicator_var_index no_overlap_disjuncts[56].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[56].constraint_index no_overlap_disjuncts[56].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[57] : Active=True 1 Set Declarations no_overlap_disjuncts[57].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[57].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[57].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[57].no_overlap_disjuncts[57].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[4] + 3 - x[2] - 28.0*(1 - no_overlap_disjuncts[57].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[57].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[57].localVarReferences.no_overlap_disjuncts[57].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[57].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[57].indicator_var_index no_overlap_disjuncts[57].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[57].constraint_index no_overlap_disjuncts[57].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[58] : Active=True 1 Set Declarations no_overlap_disjuncts[58].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[58].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[58].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[58].no_overlap_disjuncts[58].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[2] + 2 - y[4] - 10.0*(1 - no_overlap_disjuncts[58].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[58].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[58].localVarReferences.no_overlap_disjuncts[58].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[58].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[58].indicator_var_index no_overlap_disjuncts[58].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[58].constraint_index no_overlap_disjuncts[58].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[59] : Active=True 1 Set Declarations no_overlap_disjuncts[59].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[59].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[59].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[59].no_overlap_disjuncts[59].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[4] + 3 - y[2] - 10.0*(1 - no_overlap_disjuncts[59].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[59].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[59].localVarReferences.no_overlap_disjuncts[59].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[59].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[59].indicator_var_index no_overlap_disjuncts[59].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[59].constraint_index no_overlap_disjuncts[59].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[60] : Active=True 1 Set Declarations no_overlap_disjuncts[60].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[60].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[60].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[60].no_overlap_disjuncts[60].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[2] + 2 - x[5] - 27.0*(1 - no_overlap_disjuncts[60].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[60].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[60].localVarReferences.no_overlap_disjuncts[60].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[60].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[60].indicator_var_index no_overlap_disjuncts[60].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[60].constraint_index no_overlap_disjuncts[60].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[61] : Active=True 1 Set Declarations no_overlap_disjuncts[61].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[61].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[61].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[61].no_overlap_disjuncts[61].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[5] + 3 - x[2] - 28.0*(1 - no_overlap_disjuncts[61].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[61].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[61].localVarReferences.no_overlap_disjuncts[61].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[61].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[61].indicator_var_index no_overlap_disjuncts[61].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[61].constraint_index no_overlap_disjuncts[61].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[62] : Active=True 1 Set Declarations no_overlap_disjuncts[62].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[62].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[62].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[62].no_overlap_disjuncts[62].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[2] + 2 - y[5] - 10.0*(1 - no_overlap_disjuncts[62].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[62].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[62].localVarReferences.no_overlap_disjuncts[62].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[62].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[62].indicator_var_index no_overlap_disjuncts[62].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[62].constraint_index no_overlap_disjuncts[62].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[63] : Active=True 1 Set Declarations no_overlap_disjuncts[63].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[63].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[63].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[63].no_overlap_disjuncts[63].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[5] + 5 - y[2] - 10.0*(1 - no_overlap_disjuncts[63].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[63].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[63].localVarReferences.no_overlap_disjuncts[63].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[63].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[63].indicator_var_index no_overlap_disjuncts[63].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[63].constraint_index no_overlap_disjuncts[63].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[64] : Active=True 1 Set Declarations no_overlap_disjuncts[64].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[64].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[64].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[64].no_overlap_disjuncts[64].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[2] + 2 - x[6] - 27.0*(1 - no_overlap_disjuncts[64].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[64].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[64].localVarReferences.no_overlap_disjuncts[64].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[64].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[64].indicator_var_index no_overlap_disjuncts[64].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[64].constraint_index no_overlap_disjuncts[64].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[65] : Active=True 1 Set Declarations no_overlap_disjuncts[65].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[65].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[65].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[65].no_overlap_disjuncts[65].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[6] + 4 - x[2] - 29.0*(1 - no_overlap_disjuncts[65].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[65].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[65].localVarReferences.no_overlap_disjuncts[65].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[65].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[65].indicator_var_index no_overlap_disjuncts[65].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[65].constraint_index no_overlap_disjuncts[65].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[66] : Active=True 1 Set Declarations no_overlap_disjuncts[66].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[66].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[66].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[66].no_overlap_disjuncts[66].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[2] + 2 - y[6] - 10.0*(1 - no_overlap_disjuncts[66].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[66].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[66].localVarReferences.no_overlap_disjuncts[66].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[66].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[66].indicator_var_index no_overlap_disjuncts[66].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[66].constraint_index no_overlap_disjuncts[66].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[67] : Active=True 1 Set Declarations no_overlap_disjuncts[67].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[67].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[67].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[67].no_overlap_disjuncts[67].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[6] + 7 - y[2] - 10.0*(1 - no_overlap_disjuncts[67].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[67].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[67].localVarReferences.no_overlap_disjuncts[67].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[67].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[67].indicator_var_index no_overlap_disjuncts[67].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[67].constraint_index no_overlap_disjuncts[67].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[68] : Active=True 1 Set Declarations no_overlap_disjuncts[68].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[68].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[68].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[68].no_overlap_disjuncts[68].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[2] + 2 - x[7] - 27.0*(1 - no_overlap_disjuncts[68].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[68].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[68].localVarReferences.no_overlap_disjuncts[68].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[68].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[68].indicator_var_index no_overlap_disjuncts[68].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[68].constraint_index no_overlap_disjuncts[68].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[69] : Active=True 1 Set Declarations no_overlap_disjuncts[69].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[69].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[69].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[69].no_overlap_disjuncts[69].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[7] + 4 - x[2] - 29.0*(1 - no_overlap_disjuncts[69].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[69].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[69].localVarReferences.no_overlap_disjuncts[69].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[69].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[69].indicator_var_index no_overlap_disjuncts[69].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[69].constraint_index no_overlap_disjuncts[69].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[70] : Active=True 1 Set Declarations no_overlap_disjuncts[70].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[70].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[70].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[70].no_overlap_disjuncts[70].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[2] + 2 - y[7] - 10.0*(1 - no_overlap_disjuncts[70].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[70].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[70].localVarReferences.no_overlap_disjuncts[70].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[70].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[70].indicator_var_index no_overlap_disjuncts[70].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[70].constraint_index no_overlap_disjuncts[70].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[71] : Active=True 1 Set Declarations no_overlap_disjuncts[71].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[71].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[71].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[71].no_overlap_disjuncts[71].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[7] + 7 - y[2] - 10.0*(1 - no_overlap_disjuncts[71].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[71].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[71].localVarReferences.no_overlap_disjuncts[71].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[71].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[71].indicator_var_index no_overlap_disjuncts[71].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[71].constraint_index no_overlap_disjuncts[71].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[72] : Active=True 1 Set Declarations no_overlap_disjuncts[72].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[72].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[72].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[72].no_overlap_disjuncts[72].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[3] + 2 - x[4] - 27.0*(1 - no_overlap_disjuncts[72].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[72].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[72].localVarReferences.no_overlap_disjuncts[72].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[72].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[72].indicator_var_index no_overlap_disjuncts[72].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[72].constraint_index no_overlap_disjuncts[72].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[73] : Active=True 1 Set Declarations no_overlap_disjuncts[73].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[73].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[73].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[73].no_overlap_disjuncts[73].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[4] + 3 - x[3] - 28.0*(1 - no_overlap_disjuncts[73].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[73].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[73].localVarReferences.no_overlap_disjuncts[73].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[73].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[73].indicator_var_index no_overlap_disjuncts[73].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[73].constraint_index no_overlap_disjuncts[73].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[74] : Active=True 1 Set Declarations no_overlap_disjuncts[74].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[74].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[74].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[74].no_overlap_disjuncts[74].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[3] + 2 - y[4] - 10.0*(1 - no_overlap_disjuncts[74].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[74].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[74].localVarReferences.no_overlap_disjuncts[74].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[74].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[74].indicator_var_index no_overlap_disjuncts[74].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[74].constraint_index no_overlap_disjuncts[74].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[75] : Active=True 1 Set Declarations no_overlap_disjuncts[75].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[75].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[75].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[75].no_overlap_disjuncts[75].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[4] + 3 - y[3] - 10.0*(1 - no_overlap_disjuncts[75].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[75].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[75].localVarReferences.no_overlap_disjuncts[75].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[75].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[75].indicator_var_index no_overlap_disjuncts[75].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[75].constraint_index no_overlap_disjuncts[75].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[76] : Active=True 1 Set Declarations no_overlap_disjuncts[76].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[76].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[76].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[76].no_overlap_disjuncts[76].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[3] + 2 - x[5] - 27.0*(1 - no_overlap_disjuncts[76].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[76].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[76].localVarReferences.no_overlap_disjuncts[76].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[76].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[76].indicator_var_index no_overlap_disjuncts[76].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[76].constraint_index no_overlap_disjuncts[76].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[77] : Active=True 1 Set Declarations no_overlap_disjuncts[77].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[77].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[77].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[77].no_overlap_disjuncts[77].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[5] + 3 - x[3] - 28.0*(1 - no_overlap_disjuncts[77].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[77].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[77].localVarReferences.no_overlap_disjuncts[77].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[77].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[77].indicator_var_index no_overlap_disjuncts[77].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[77].constraint_index no_overlap_disjuncts[77].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[78] : Active=True 1 Set Declarations no_overlap_disjuncts[78].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[78].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[78].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[78].no_overlap_disjuncts[78].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[3] + 2 - y[5] - 10.0*(1 - no_overlap_disjuncts[78].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[78].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[78].localVarReferences.no_overlap_disjuncts[78].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[78].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[78].indicator_var_index no_overlap_disjuncts[78].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[78].constraint_index no_overlap_disjuncts[78].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[79] : Active=True 1 Set Declarations no_overlap_disjuncts[79].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[79].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[79].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[79].no_overlap_disjuncts[79].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[5] + 5 - y[3] - 10.0*(1 - no_overlap_disjuncts[79].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[79].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[79].localVarReferences.no_overlap_disjuncts[79].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[79].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[79].indicator_var_index no_overlap_disjuncts[79].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[79].constraint_index no_overlap_disjuncts[79].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[80] : Active=True 1 Set Declarations no_overlap_disjuncts[80].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[80].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[80].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[80].no_overlap_disjuncts[80].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[3] + 2 - x[6] - 27.0*(1 - no_overlap_disjuncts[80].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[80].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[80].localVarReferences.no_overlap_disjuncts[80].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[80].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[80].indicator_var_index no_overlap_disjuncts[80].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[80].constraint_index no_overlap_disjuncts[80].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[81] : Active=True 1 Set Declarations no_overlap_disjuncts[81].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[81].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[81].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[81].no_overlap_disjuncts[81].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[6] + 4 - x[3] - 29.0*(1 - no_overlap_disjuncts[81].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[81].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[81].localVarReferences.no_overlap_disjuncts[81].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[81].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[81].indicator_var_index no_overlap_disjuncts[81].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[81].constraint_index no_overlap_disjuncts[81].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[82] : Active=True 1 Set Declarations no_overlap_disjuncts[82].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[82].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[82].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[82].no_overlap_disjuncts[82].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[3] + 2 - y[6] - 10.0*(1 - no_overlap_disjuncts[82].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[82].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[82].localVarReferences.no_overlap_disjuncts[82].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[82].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[82].indicator_var_index no_overlap_disjuncts[82].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[82].constraint_index no_overlap_disjuncts[82].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[83] : Active=True 1 Set Declarations no_overlap_disjuncts[83].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[83].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[83].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[83].no_overlap_disjuncts[83].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[6] + 7 - y[3] - 10.0*(1 - no_overlap_disjuncts[83].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[83].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[83].localVarReferences.no_overlap_disjuncts[83].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[83].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[83].indicator_var_index no_overlap_disjuncts[83].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[83].constraint_index no_overlap_disjuncts[83].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[84] : Active=True 1 Set Declarations no_overlap_disjuncts[84].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[84].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[84].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[84].no_overlap_disjuncts[84].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[3] + 2 - x[7] - 27.0*(1 - no_overlap_disjuncts[84].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[84].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[84].localVarReferences.no_overlap_disjuncts[84].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[84].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[84].indicator_var_index no_overlap_disjuncts[84].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[84].constraint_index no_overlap_disjuncts[84].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[85] : Active=True 1 Set Declarations no_overlap_disjuncts[85].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[85].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[85].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[85].no_overlap_disjuncts[85].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[7] + 4 - x[3] - 29.0*(1 - no_overlap_disjuncts[85].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[85].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[85].localVarReferences.no_overlap_disjuncts[85].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[85].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[85].indicator_var_index no_overlap_disjuncts[85].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[85].constraint_index no_overlap_disjuncts[85].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[86] : Active=True 1 Set Declarations no_overlap_disjuncts[86].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[86].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[86].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[86].no_overlap_disjuncts[86].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[3] + 2 - y[7] - 10.0*(1 - no_overlap_disjuncts[86].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[86].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[86].localVarReferences.no_overlap_disjuncts[86].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[86].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[86].indicator_var_index no_overlap_disjuncts[86].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[86].constraint_index no_overlap_disjuncts[86].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[87] : Active=True 1 Set Declarations no_overlap_disjuncts[87].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[87].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[87].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[87].no_overlap_disjuncts[87].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[7] + 7 - y[3] - 10.0*(1 - no_overlap_disjuncts[87].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[87].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[87].localVarReferences.no_overlap_disjuncts[87].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[87].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[87].indicator_var_index no_overlap_disjuncts[87].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[87].constraint_index no_overlap_disjuncts[87].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[88] : Active=True 1 Set Declarations no_overlap_disjuncts[88].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[88].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[88].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[88].no_overlap_disjuncts[88].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[4] + 3 - x[5] - 28.0*(1 - no_overlap_disjuncts[88].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[88].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[88].localVarReferences.no_overlap_disjuncts[88].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[88].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[88].indicator_var_index no_overlap_disjuncts[88].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[88].constraint_index no_overlap_disjuncts[88].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[89] : Active=True 1 Set Declarations no_overlap_disjuncts[89].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[89].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[89].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[89].no_overlap_disjuncts[89].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[5] + 3 - x[4] - 28.0*(1 - no_overlap_disjuncts[89].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[89].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[89].localVarReferences.no_overlap_disjuncts[89].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[89].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[89].indicator_var_index no_overlap_disjuncts[89].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[89].constraint_index no_overlap_disjuncts[89].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[90] : Active=True 1 Set Declarations no_overlap_disjuncts[90].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[90].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[90].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[90].no_overlap_disjuncts[90].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[4] + 3 - y[5] - 10.0*(1 - no_overlap_disjuncts[90].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[90].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[90].localVarReferences.no_overlap_disjuncts[90].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[90].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[90].indicator_var_index no_overlap_disjuncts[90].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[90].constraint_index no_overlap_disjuncts[90].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[91] : Active=True 1 Set Declarations no_overlap_disjuncts[91].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[91].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[91].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[91].no_overlap_disjuncts[91].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[5] + 5 - y[4] - 10.0*(1 - no_overlap_disjuncts[91].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[91].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[91].localVarReferences.no_overlap_disjuncts[91].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[91].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[91].indicator_var_index no_overlap_disjuncts[91].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[91].constraint_index no_overlap_disjuncts[91].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[92] : Active=True 1 Set Declarations no_overlap_disjuncts[92].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[92].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[92].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[92].no_overlap_disjuncts[92].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[4] + 3 - x[6] - 28.0*(1 - no_overlap_disjuncts[92].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[92].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[92].localVarReferences.no_overlap_disjuncts[92].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[92].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[92].indicator_var_index no_overlap_disjuncts[92].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[92].constraint_index no_overlap_disjuncts[92].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[93] : Active=True 1 Set Declarations no_overlap_disjuncts[93].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[93].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[93].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[93].no_overlap_disjuncts[93].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[6] + 4 - x[4] - 29.0*(1 - no_overlap_disjuncts[93].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[93].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[93].localVarReferences.no_overlap_disjuncts[93].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[93].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[93].indicator_var_index no_overlap_disjuncts[93].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[93].constraint_index no_overlap_disjuncts[93].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[94] : Active=True 1 Set Declarations no_overlap_disjuncts[94].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[94].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[94].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[94].no_overlap_disjuncts[94].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[4] + 3 - y[6] - 10.0*(1 - no_overlap_disjuncts[94].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[94].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[94].localVarReferences.no_overlap_disjuncts[94].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[94].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[94].indicator_var_index no_overlap_disjuncts[94].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[94].constraint_index no_overlap_disjuncts[94].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[95] : Active=True 1 Set Declarations no_overlap_disjuncts[95].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[95].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[95].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[95].no_overlap_disjuncts[95].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[6] + 7 - y[4] - 10.0*(1 - no_overlap_disjuncts[95].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[95].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[95].localVarReferences.no_overlap_disjuncts[95].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[95].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[95].indicator_var_index no_overlap_disjuncts[95].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[95].constraint_index no_overlap_disjuncts[95].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[96] : Active=True 1 Set Declarations no_overlap_disjuncts[96].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[96].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[96].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[96].no_overlap_disjuncts[96].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[4] + 3 - x[7] - 28.0*(1 - no_overlap_disjuncts[96].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[96].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[96].localVarReferences.no_overlap_disjuncts[96].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[96].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[96].indicator_var_index no_overlap_disjuncts[96].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[96].constraint_index no_overlap_disjuncts[96].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[97] : Active=True 1 Set Declarations no_overlap_disjuncts[97].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[97].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[97].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[97].no_overlap_disjuncts[97].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[7] + 4 - x[4] - 29.0*(1 - no_overlap_disjuncts[97].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[97].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[97].localVarReferences.no_overlap_disjuncts[97].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[97].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[97].indicator_var_index no_overlap_disjuncts[97].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[97].constraint_index no_overlap_disjuncts[97].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[98] : Active=True 1 Set Declarations no_overlap_disjuncts[98].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[98].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[98].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[98].no_overlap_disjuncts[98].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[4] + 3 - y[7] - 10.0*(1 - no_overlap_disjuncts[98].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[98].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[98].localVarReferences.no_overlap_disjuncts[98].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[98].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[98].indicator_var_index no_overlap_disjuncts[98].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[98].constraint_index no_overlap_disjuncts[98].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[99] : Active=True 1 Set Declarations no_overlap_disjuncts[99].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[99].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[99].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[99].no_overlap_disjuncts[99].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[7] + 7 - y[4] - 10.0*(1 - no_overlap_disjuncts[99].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[99].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[99].localVarReferences.no_overlap_disjuncts[99].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[99].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[99].indicator_var_index no_overlap_disjuncts[99].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[99].constraint_index no_overlap_disjuncts[99].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[100] : Active=True 1 Set Declarations no_overlap_disjuncts[100].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[100].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[100].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[100].no_overlap_disjuncts[100].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[5] + 3 - x[6] - 28.0*(1 - no_overlap_disjuncts[100].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[100].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[100].localVarReferences.no_overlap_disjuncts[100].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[100].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[100].indicator_var_index no_overlap_disjuncts[100].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[100].constraint_index no_overlap_disjuncts[100].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[101] : Active=True 1 Set Declarations no_overlap_disjuncts[101].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[101].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[101].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[101].no_overlap_disjuncts[101].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[6] + 4 - x[5] - 29.0*(1 - no_overlap_disjuncts[101].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[101].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[101].localVarReferences.no_overlap_disjuncts[101].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[101].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[101].indicator_var_index no_overlap_disjuncts[101].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[101].constraint_index no_overlap_disjuncts[101].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[102] : Active=True 1 Set Declarations no_overlap_disjuncts[102].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[102].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[102].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[102].no_overlap_disjuncts[102].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[5] + 5 - y[6] - 10.0*(1 - no_overlap_disjuncts[102].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[102].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[102].localVarReferences.no_overlap_disjuncts[102].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[102].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[102].indicator_var_index no_overlap_disjuncts[102].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[102].constraint_index no_overlap_disjuncts[102].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[103] : Active=True 1 Set Declarations no_overlap_disjuncts[103].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[103].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[103].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[103].no_overlap_disjuncts[103].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[6] + 7 - y[5] - 10.0*(1 - no_overlap_disjuncts[103].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[103].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[103].localVarReferences.no_overlap_disjuncts[103].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[103].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[103].indicator_var_index no_overlap_disjuncts[103].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[103].constraint_index no_overlap_disjuncts[103].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[104] : Active=True 1 Set Declarations no_overlap_disjuncts[104].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[104].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[104].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[104].no_overlap_disjuncts[104].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[5] + 3 - x[7] - 28.0*(1 - no_overlap_disjuncts[104].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[104].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[104].localVarReferences.no_overlap_disjuncts[104].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[104].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[104].indicator_var_index no_overlap_disjuncts[104].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[104].constraint_index no_overlap_disjuncts[104].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[105] : Active=True 1 Set Declarations no_overlap_disjuncts[105].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[105].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[105].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[105].no_overlap_disjuncts[105].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[7] + 4 - x[5] - 29.0*(1 - no_overlap_disjuncts[105].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[105].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[105].localVarReferences.no_overlap_disjuncts[105].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[105].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[105].indicator_var_index no_overlap_disjuncts[105].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[105].constraint_index no_overlap_disjuncts[105].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[106] : Active=True 1 Set Declarations no_overlap_disjuncts[106].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[106].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[106].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[106].no_overlap_disjuncts[106].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[5] + 5 - y[7] - 10.0*(1 - no_overlap_disjuncts[106].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[106].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[106].localVarReferences.no_overlap_disjuncts[106].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[106].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[106].indicator_var_index no_overlap_disjuncts[106].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[106].constraint_index no_overlap_disjuncts[106].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[107] : Active=True 1 Set Declarations no_overlap_disjuncts[107].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[107].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[107].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[107].no_overlap_disjuncts[107].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[7] + 7 - y[5] - 10.0*(1 - no_overlap_disjuncts[107].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[107].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[107].localVarReferences.no_overlap_disjuncts[107].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[107].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[107].indicator_var_index no_overlap_disjuncts[107].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[107].constraint_index no_overlap_disjuncts[107].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[108] : Active=True 1 Set Declarations no_overlap_disjuncts[108].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[108].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[108].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[108].no_overlap_disjuncts[108].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[6] + 4 - x[7] - 29.0*(1 - no_overlap_disjuncts[108].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[108].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[108].localVarReferences.no_overlap_disjuncts[108].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[108].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[108].indicator_var_index no_overlap_disjuncts[108].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[108].constraint_index no_overlap_disjuncts[108].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[109] : Active=True 1 Set Declarations no_overlap_disjuncts[109].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[109].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[109].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[109].no_overlap_disjuncts[109].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : x[7] + 4 - x[6] - 29.0*(1 - no_overlap_disjuncts[109].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[109].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[109].localVarReferences.no_overlap_disjuncts[109].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[109].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[109].indicator_var_index no_overlap_disjuncts[109].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[109].constraint_index no_overlap_disjuncts[109].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[110] : Active=True 1 Set Declarations no_overlap_disjuncts[110].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[110].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[110].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[110].no_overlap_disjuncts[110].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[6] + 7 - y[7] - 10.0*(1 - no_overlap_disjuncts[110].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[110].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[110].localVarReferences.no_overlap_disjuncts[110].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[110].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[110].indicator_var_index no_overlap_disjuncts[110].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[110].constraint_index no_overlap_disjuncts[110].constraint _pyomo_gdp_bigm_reformulation.relaxedDisjuncts[111] : Active=True 1 Set Declarations no_overlap_disjuncts[111].constraint_index : Size=1, Index=None, Ordered=True Key : Dimen : Domain : Size : Members None : 2 : no_overlap_disjuncts[111].constraint_index*_pyomo_gdp_bigm_reformulation.lbub : 2 : {(1, 'lb'), (1, 'ub')} 1 Constraint Declarations no_overlap_disjuncts[111].constraint : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[111].no_overlap_disjuncts[111].constraint_index, Active=True Key : Lower : Body : Upper : Active (1, 'ub') : -Inf : y[7] + 7 - y[6] - 10.0*(1 - no_overlap_disjuncts[111].indicator_var) : 0.0 : True 1 Block Declarations localVarReferences : Size=1, Index=None, Active=True 1 Var Declarations no_overlap_disjuncts[111].indicator_var : Size=1, Index=_pyomo_gdp_bigm_reformulation.relaxedDisjuncts[111].localVarReferences.no_overlap_disjuncts[111].indicator_var_index Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 SetOf Declarations no_overlap_disjuncts[111].indicator_var_index : Dimen=1, Size=1, Bounds=(None, None) Key : Ordered : Members None : False : UnindexedComponent_set 2 Declarations: no_overlap_disjuncts[111].indicator_var_index no_overlap_disjuncts[111].indicator_var 3 Declarations: localVarReferences no_overlap_disjuncts[111].constraint_index no_overlap_disjuncts[111].constraint 3 Declarations: relaxedDisjuncts lbub no_overlap_xor 1 Disjunct Declarations no_overlap_disjuncts : Size=112, Index=Any, Active=False no_overlap_disjuncts[0] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[0].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[0].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[1] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[1].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[1].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[2] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[2].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[2].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[3] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[3].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[3].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[4] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[4].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[4].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[5] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[5].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[5].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[6] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[6].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[6].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[7] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[7].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[7].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[8] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[8].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[8].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[9] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[9].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[9].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[10] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[10].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[10].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[11] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[11].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[11].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[12] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[12].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[12].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[13] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[13].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[13].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[14] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[14].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[14].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[15] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[15].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[15].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[16] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[16].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[16].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[17] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[17].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[17].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[18] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[18].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[18].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[19] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[19].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[19].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[20] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[20].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[20].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[21] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[21].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[21].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[22] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[22].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[22].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[23] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[23].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[23].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[24] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[24].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[0] + 4 - x[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[24].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[25] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[25].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[25].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[26] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[26].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[0] + 3 - y[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[26].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[27] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[27].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[0] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[27].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[28] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[28].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[28].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[29] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[29].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[29].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[30] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[30].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[30].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[31] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[31].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[31].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[32] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[32].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[32].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[33] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[33].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[33].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[34] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[34].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[34].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[35] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[35].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[35].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[36] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[36].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[36].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[37] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[37].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[37].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[38] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[38].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[38].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[39] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[39].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[39].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[40] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[40].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[40].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[41] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[41].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[41].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[42] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[42].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[42].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[43] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[43].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[43].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[44] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[44].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[44].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[45] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[45].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[45].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[46] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[46].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[46].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[47] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[47].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[47].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[48] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[48].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[1] + 3 - x[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[48].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[49] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[49].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[49].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[50] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[50].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[1] + 3 - y[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[50].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[51] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[51].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[1] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[51].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[52] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[52].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[52].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[53] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[53].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[53].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[54] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[54].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[54].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[55] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[55].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[55].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[56] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[56].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[56].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[57] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[57].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[57].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[58] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[58].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[58].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[59] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[59].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[59].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[60] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[60].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[60].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[61] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[61].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[61].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[62] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[62].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[62].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[63] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[63].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[63].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[64] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[64].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[64].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[65] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[65].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[65].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[66] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[66].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[66].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[67] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[67].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[67].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[68] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[68].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[2] + 2 - x[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[68].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[69] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[69].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[69].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[70] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[70].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[2] + 2 - y[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[70].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[71] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[71].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[2] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[71].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[72] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[72].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[72].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[73] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[73].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[73].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[74] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[74].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[74].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[75] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[75].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[75].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[76] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[76].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[76].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[77] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[77].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[77].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[78] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[78].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[78].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[79] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[79].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[79].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[80] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[80].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[80].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[81] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[81].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[81].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[82] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[82].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[82].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[83] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[83].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[83].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[84] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[84].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[3] + 2 - x[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[84].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[85] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[85].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[85].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[86] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[86].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[3] + 2 - y[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[86].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[87] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[87].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[3] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[87].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[88] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[88].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[88].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[89] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[89].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[89].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[90] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[90].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[90].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[91] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[91].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[91].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[92] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[92].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[92].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[93] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[93].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[93].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[94] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[94].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[94].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[95] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[95].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[95].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[96] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[96].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[4] + 3 - x[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[96].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[97] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[97].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[97].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[98] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[98].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[4] + 3 - y[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[98].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[99] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[99].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[4] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[99].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[100] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[100].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[100].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[101] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[101].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[101].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[102] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[102].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[102].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[103] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[103].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[103].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[104] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[104].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[5] + 3 - x[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[104].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[105] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[105].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[105].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[106] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[106].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[5] + 5 - y[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[106].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[107] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[107].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[5] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[107].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[108] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[108].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[6] + 4 - x[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[108].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[109] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[109].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : x[7] + 4 - x[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[109].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[110] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[110].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[6] + 7 - y[7] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[110].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions no_overlap_disjuncts[111] : Active=False 2 Set Declarations constraint_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : 1 : Any : 1 : {1,} propositions_index : Size=1, Index=None, Ordered=Insertion Key : Dimen : Domain : Size : Members None : -- : Any : 0 : {} 1 Var Declarations indicator_var : Size=1, Index=None Key : Lower : Value : Upper : Fixed : Stale : Domain None : 0 : None : 1 : False : True : Binary 1 Constraint Declarations constraint : Size=1, Index=no_overlap_disjuncts[111].constraint_index, Active=True Key : Lower : Body : Upper : Active 1 : -Inf : y[7] + 7 - y[6] : 0.0 : False 1 LogicalConstraint Declarations propositions : Size=0, Index=no_overlap_disjuncts[111].propositions_index, Active=False Key : Body : Active 5 Declarations: indicator_var constraint_index constraint propositions_index propositions 1 Disjunction Declarations no_overlap : Make sure that none of the rectangles on the strip overlap in either the x or y dimensions. Size=28, Index=overlap_pairs, Active=False Key : Disjuncts : Active : XOR (0, 1) : ['no_overlap_disjuncts[0]', 'no_overlap_disjuncts[1]', 'no_overlap_disjuncts[2]', 'no_overlap_disjuncts[3]'] : False : True (0, 2) : ['no_overlap_disjuncts[4]', 'no_overlap_disjuncts[5]', 'no_overlap_disjuncts[6]', 'no_overlap_disjuncts[7]'] : False : True (0, 3) : ['no_overlap_disjuncts[8]', 'no_overlap_disjuncts[9]', 'no_overlap_disjuncts[10]', 'no_overlap_disjuncts[11]'] : False : True (0, 4) : ['no_overlap_disjuncts[12]', 'no_overlap_disjuncts[13]', 'no_overlap_disjuncts[14]', 'no_overlap_disjuncts[15]'] : False : True (0, 5) : ['no_overlap_disjuncts[16]', 'no_overlap_disjuncts[17]', 'no_overlap_disjuncts[18]', 'no_overlap_disjuncts[19]'] : False : True (0, 6) : ['no_overlap_disjuncts[20]', 'no_overlap_disjuncts[21]', 'no_overlap_disjuncts[22]', 'no_overlap_disjuncts[23]'] : False : True (0, 7) : ['no_overlap_disjuncts[24]', 'no_overlap_disjuncts[25]', 'no_overlap_disjuncts[26]', 'no_overlap_disjuncts[27]'] : False : True (1, 2) : ['no_overlap_disjuncts[28]', 'no_overlap_disjuncts[29]', 'no_overlap_disjuncts[30]', 'no_overlap_disjuncts[31]'] : False : True (1, 3) : ['no_overlap_disjuncts[32]', 'no_overlap_disjuncts[33]', 'no_overlap_disjuncts[34]', 'no_overlap_disjuncts[35]'] : False : True (1, 4) : ['no_overlap_disjuncts[36]', 'no_overlap_disjuncts[37]', 'no_overlap_disjuncts[38]', 'no_overlap_disjuncts[39]'] : False : True (1, 5) : ['no_overlap_disjuncts[40]', 'no_overlap_disjuncts[41]', 'no_overlap_disjuncts[42]', 'no_overlap_disjuncts[43]'] : False : True (1, 6) : ['no_overlap_disjuncts[44]', 'no_overlap_disjuncts[45]', 'no_overlap_disjuncts[46]', 'no_overlap_disjuncts[47]'] : False : True (1, 7) : ['no_overlap_disjuncts[48]', 'no_overlap_disjuncts[49]', 'no_overlap_disjuncts[50]', 'no_overlap_disjuncts[51]'] : False : True (2, 3) : ['no_overlap_disjuncts[52]', 'no_overlap_disjuncts[53]', 'no_overlap_disjuncts[54]', 'no_overlap_disjuncts[55]'] : False : True (2, 4) : ['no_overlap_disjuncts[56]', 'no_overlap_disjuncts[57]', 'no_overlap_disjuncts[58]', 'no_overlap_disjuncts[59]'] : False : True (2, 5) : ['no_overlap_disjuncts[60]', 'no_overlap_disjuncts[61]', 'no_overlap_disjuncts[62]', 'no_overlap_disjuncts[63]'] : False : True (2, 6) : ['no_overlap_disjuncts[64]', 'no_overlap_disjuncts[65]', 'no_overlap_disjuncts[66]', 'no_overlap_disjuncts[67]'] : False : True (2, 7) : ['no_overlap_disjuncts[68]', 'no_overlap_disjuncts[69]', 'no_overlap_disjuncts[70]', 'no_overlap_disjuncts[71]'] : False : True (3, 4) : ['no_overlap_disjuncts[72]', 'no_overlap_disjuncts[73]', 'no_overlap_disjuncts[74]', 'no_overlap_disjuncts[75]'] : False : True (3, 5) : ['no_overlap_disjuncts[76]', 'no_overlap_disjuncts[77]', 'no_overlap_disjuncts[78]', 'no_overlap_disjuncts[79]'] : False : True (3, 6) : ['no_overlap_disjuncts[80]', 'no_overlap_disjuncts[81]', 'no_overlap_disjuncts[82]', 'no_overlap_disjuncts[83]'] : False : True (3, 7) : ['no_overlap_disjuncts[84]', 'no_overlap_disjuncts[85]', 'no_overlap_disjuncts[86]', 'no_overlap_disjuncts[87]'] : False : True (4, 5) : ['no_overlap_disjuncts[88]', 'no_overlap_disjuncts[89]', 'no_overlap_disjuncts[90]', 'no_overlap_disjuncts[91]'] : False : True (4, 6) : ['no_overlap_disjuncts[92]', 'no_overlap_disjuncts[93]', 'no_overlap_disjuncts[94]', 'no_overlap_disjuncts[95]'] : False : True (4, 7) : ['no_overlap_disjuncts[96]', 'no_overlap_disjuncts[97]', 'no_overlap_disjuncts[98]', 'no_overlap_disjuncts[99]'] : False : True (5, 6) : ['no_overlap_disjuncts[100]', 'no_overlap_disjuncts[101]', 'no_overlap_disjuncts[102]', 'no_overlap_disjuncts[103]'] : False : True (5, 7) : ['no_overlap_disjuncts[104]', 'no_overlap_disjuncts[105]', 'no_overlap_disjuncts[106]', 'no_overlap_disjuncts[107]'] : False : True (6, 7) : ['no_overlap_disjuncts[108]', 'no_overlap_disjuncts[109]', 'no_overlap_disjuncts[110]', 'no_overlap_disjuncts[111]'] : False : True 14 Declarations: rectangles rect_width rect_length strip_width max_length x y strip_length overlap_pairs strip_ends_after_last_rec total_length no_overlap no_overlap_disjuncts _pyomo_gdp_bigm_reformulation
Finally, we'll solve the model and examine the solution.
#
# Solve and print the solution
#
SolverFactory(milp_solver).solve(model, tee=True)
for i in model.rectangles:
print("Rectangle %s: (%s, %s)" % (i, value(model.x[i]), value(model.y[i])))
model.total_length.display()
Using license file /Users/adowling/gurobi.lic Academic license - for non-commercial use only Read LP format model from file /var/folders/xy/24xvnyss36v3d8mw68tygxdw0000gp/T/tmpwz_0ryap.pyomo.lp Reading time = 0.00 seconds x130: 149 rows, 130 columns, 465 nonzeros Gurobi Optimizer version 9.0.2 build v9.0.2rc0 (mac64) Optimize a model with 149 rows, 130 columns and 465 nonzeros Model fingerprint: 0x8c44476c Variable types: 18 continuous, 112 integer (112 binary) Coefficient statistics: Matrix range [1e+00, 3e+01] Objective range [1e+00, 1e+00] Bounds range [1e+00, 2e+01] RHS range [1e+00, 2e+01] Found heuristic solution: objective 15.0000000 Presolve removed 10 rows and 10 columns Presolve time: 0.01s Presolved: 139 rows, 120 columns, 434 nonzeros Variable types: 17 continuous, 103 integer (103 binary) Root relaxation: objective 8.000000e+00, 55 iterations, 0.00 seconds Nodes | Current Node | Objective Bounds | Work Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time 0 0 8.00000 0 5 15.00000 8.00000 46.7% - 0s H 0 0 14.0000000 8.00000 42.9% - 0s 0 0 8.25000 0 8 14.00000 8.25000 41.1% - 0s 0 0 8.25000 0 10 14.00000 8.25000 41.1% - 0s 0 0 8.25000 0 21 14.00000 8.25000 41.1% - 0s H 0 0 13.0000000 8.25000 36.5% - 0s 0 0 8.25000 0 21 13.00000 8.25000 36.5% - 0s H 0 0 12.9999980 8.25000 36.5% - 0s 0 0 8.25000 0 7 13.00000 8.25000 36.5% - 0s 0 0 8.25000 0 7 13.00000 8.25000 36.5% - 0s 0 0 8.25000 0 7 13.00000 8.25000 36.5% - 0s 0 0 8.25000 0 7 13.00000 8.25000 36.5% - 0s 0 2 8.25000 0 7 13.00000 8.25000 36.5% - 0s H 21 26 12.0000000 8.25000 31.2% 9.0 0s * 418 303 14 11.0000000 8.25000 25.0% 3.7 0s H 5546 778 11.0000000 8.25000 25.0% 5.1 0s Cutting planes: Gomory: 4 Cover: 15 Implied bound: 5 Clique: 5 Flow cover: 12 RLT: 2 Relax-and-lift: 2 Explored 6413 nodes (34328 simplex iterations) in 0.40 seconds Thread count was 6 (of 6 available processors) Solution count 7: 11 11 12 ... 15 Optimal solution found (tolerance 1.00e-04) Best objective 1.099999999880e+01, best bound 1.099999999880e+01, gap 0.0000% Rectangle 0: (6.999999998799998, 0.0) Rectangle 1: (1.3877787807814457e-15, 2.000000000000001) Rectangle 2: (1.9999999988000008, 0.0) Rectangle 3: (0.0, 0.0) Rectangle 4: (3.999999998800001, 0.0) Rectangle 5: (0.0, 4.999999999999999) Rectangle 6: (6.999999998799998, 3.0) Rectangle 7: (2.999999998799998, 3.0) total_length : Size=1, Index=None, Active=True Key : Active : Value None : True : 10.999999998799998
We will repeat the procedure above but without printing the model.
model = create_model()
# YOUR SOLUTION HERE
#
# Solve and print the solution
#
SolverFactory(milp_solver).solve(model, tee=True)
for i in model.rectangles:
print("Rectangle %s: (%s, %s)" % (i, value(model.x[i]), value(model.y[i])))
model.total_length.display()
Using license file /Users/adowling/gurobi.lic Academic license - for non-commercial use only Read LP format model from file /var/folders/xy/24xvnyss36v3d8mw68tygxdw0000gp/T/tmpbgzmt60k.pyomo.lp Reading time = 0.00 seconds x578: 709 rows, 578 columns, 1921 nonzeros Gurobi Optimizer version 9.0.2 build v9.0.2rc0 (mac64) Optimize a model with 709 rows, 578 columns and 1921 nonzeros Model fingerprint: 0x328986a1 Variable types: 466 continuous, 112 integer (112 binary) Coefficient statistics: Matrix range [1e+00, 2e+01] Objective range [1e+00, 1e+00] Bounds range [1e+00, 2e+01] RHS range [1e+00, 4e+00] Presolve removed 76 rows and 64 columns Presolve time: 0.00s Presolved: 633 rows, 514 columns, 1716 nonzeros Variable types: 411 continuous, 103 integer (103 binary) Found heuristic solution: objective 25.0000000 Root relaxation: objective 8.000000e+00, 189 iterations, 0.00 seconds Nodes | Current Node | Objective Bounds | Work Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time 0 0 8.00000 0 15 25.00000 8.00000 68.0% - 0s H 0 0 19.0000000 8.00000 57.9% - 0s 0 0 8.00000 0 41 19.00000 8.00000 57.9% - 0s H 0 0 16.0000000 8.00000 50.0% - 0s H 0 0 13.0000000 8.00000 38.5% - 0s 0 0 8.00000 0 42 13.00000 8.00000 38.5% - 0s H 0 0 12.0000000 8.00000 33.3% - 0s 0 0 8.00000 0 17 12.00000 8.00000 33.3% - 0s 0 0 8.00000 0 17 12.00000 8.00000 33.3% - 0s 0 2 8.00000 0 17 12.00000 8.00000 33.3% - 0s H 1110 533 11.9999992 8.00000 33.3% 15.3 0s H 4078 1101 11.0000000 11.00000 0.00% 13.4 1s Cutting planes: Gomory: 1 Cover: 10 Implied bound: 9 Projected implied bound: 1 Clique: 2 MIR: 69 Flow cover: 84 GUB cover: 1 RLT: 1 Relax-and-lift: 12 Explored 4078 nodes (66367 simplex iterations) in 1.17 seconds Thread count was 6 (of 6 available processors) Solution count 7: 11 12 12 ... 25 Optimal solution found (tolerance 1.00e-04) Best objective 1.100000000000e+01, best bound 1.100000000000e+01, gap 0.0000% Rectangle 0: (0.0, 7.0) Rectangle 1: (4.0, 0.0) Rectangle 2: (8.999999999999996, 0.0) Rectangle 3: (6.999999999999997, 0.0) Rectangle 4: (8.0, 7.0) Rectangle 5: (8.0, 2.0) Rectangle 6: (4.0, 3.0) Rectangle 7: (0.0, 0.0) total_length : Size=1, Index=None, Active=True Key : Active : Value None : True : 11.0