Implement RelaxationComponent

This commit is contained in:
2020-10-08 15:03:17 -05:00
parent 3c4045f64b
commit 1b6982ae8d
11 changed files with 411 additions and 36 deletions

View File

@@ -244,3 +244,9 @@ class BasePyomoSolver(InternalSolver):
@abstractmethod
def _get_gap_tolerance_option_name(self):
pass
def relax(self):
raise Exception("not implemented")
def get_constraint_slacks(self):
raise Exception("not implemented")