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
We could have something like that too but having different types can be helpful when we want to do multiple dispatch. We could also have Cut{Fun, LB} where Fun and LB are boolean
An
AbstractNode
must implementsgetoptimalitycut
andgetfeasibilitycut
.getoptimalitycut
must returns aMinFunCut
(do you preferUBFunCut
?) (θ ≦ ⟨a, x⟩ + β
) or aMaxFunCut
(do you preferLBFunCut
?) (θ ≧ ⟨a, x⟩ + β
).getfeasibilitycut
must returns aLBCut
(⟨a, x⟩ ≧ β
) or aUBCut
(⟨a, x⟩ ≦ β
).The 4 cut types will be defined in
CutPruners
. What do you think ?The text was updated successfully, but these errors were encountered: