mirror of
https://github.com/ANL-CEEESA/MIPLearn.git
synced 2025-12-07 01:48:51 -06:00
Implement preliminary version of static lazy component
This commit is contained in:
@@ -77,6 +77,18 @@ class Instance(ABC):
|
||||
"""
|
||||
return "default"
|
||||
|
||||
def has_static_lazy_constraints(self):
|
||||
return False
|
||||
|
||||
def has_dynamic_lazy_constraints(self):
|
||||
return False
|
||||
|
||||
def is_constraint_lazy(self, cid):
|
||||
return False
|
||||
|
||||
def get_lazy_constraint_features(self, cid):
|
||||
pass
|
||||
|
||||
def find_violated_lazy_constraints(self, model):
|
||||
"""
|
||||
Returns lazy constraint violations found for the current solution.
|
||||
|
||||
Reference in New Issue
Block a user