Closed maximouth closed 3 years ago
Is there a particular reason why you want to use CGAL for this problem? The CGAL GLPK class you are using really just is a wrapper that we only use for one algorithm (Polygonal reconstruction). I'm not sure there's any added value to use this wrapper alone.
Why not directly use GLPK (and having thus access to the lower level functions that you need)?
Because I didn't knew that this part of CGAL was only a wrapper of GLPK... For this case, using CGAL really adds nothing ? If it is the case, then I will move to GLPK only.
Thanks for the response!
Please use the following template to help us solving your issue.
Issue Details
Hello,
I'm trying to solve a MILP problem with CGAL using the GLPK_mixed_integer_program_traits class. After defining my problem, all the variables, the different constraints and the linear objective function I launch the solver. But as result I got the following sentence : " solving problem failed error: Unable to start the search, because LP relaxation of the MIP problem instance hasno primal feasible solution. (This code may appear only if the presolver is enabled.)"
Can you tell me how to disable the presolver for the resolution of this problem ?
Thank you in advance, Maxime
Source Code
Environment