From d2e8c038929bbea945f6fc04e4e5f6847e5c2b24 Mon Sep 17 00:00:00 2001 From: Andrea Censi Date: Fri, 26 May 2023 17:44:29 +0200 Subject: ciskip --- src/act4e_mcdp_solution/solution.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/act4e_mcdp_solution') diff --git a/src/act4e_mcdp_solution/solution.py b/src/act4e_mcdp_solution/solution.py index 0a207d0..4704807 100644 --- a/src/act4e_mcdp_solution/solution.py +++ b/src/act4e_mcdp_solution/solution.py @@ -7,7 +7,9 @@ __all__ = ["MySolution"] class MySolution(SolverInterface): def solve_FixFunMinRes(self, model: NamedDP, query: Mapping[str, Any]) -> UpperSet[Mapping[str, Any]]: + # returns the empty upper set - marking it as infeasible return UpperSet([]) def solve_FixResMaxFun(self, model: NamedDP, query: Mapping[str, Any]) -> LowerSet[Mapping[str, Any]]: + # returns the empty upper set - marking it as infeasible return LowerSet([]) -- cgit v1.2.1