You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
iffrozenset(itemIndices) inmodel._InfeasibleSets:# or frozenset(itemIndices) in model._IncompatibleItems:
So there might be many entries with the same items but in different sequence. As a result, subproblems will have to be solved multiple times even though they have already been proven feasible or infeasible before.
The text was updated successfully, but these errors were encountered:
Frozen sets are sequence dependent when instantiated from lists but not when instantiated from tuples or sets?
For example, in
BinPacking2D/BinPacking.py
Line 589 in 3d2852a
membership is compared after adding items to the collection of frozensets from lists
BinPacking2D/BinPacking.py
Lines 673 to 676 in 3d2852a
So there might be many entries with the same items but in different sequence. As a result, subproblems will have to be solved multiple times even though they have already been proven feasible or infeasible before.
The text was updated successfully, but these errors were encountered: