coin-or / pulp

A python Linear Programming API
http://coin-or.github.io/pulp/
Other
2.1k stars 384 forks source link

Can't use options file with HiGHS_CMD solver #648

Open mamiavi opened 1 year ago

mamiavi commented 1 year ago

In the official documentation: https://coin-or.github.io/pulp/technical/solvers.html#pulp.apis.HiGHS_CMD it is said that it is possible to pass a list of additional options to be used by HiGHS_CMD solver, using the parameter options Checking highs --help you can see the list of parameters available In case that you want to pass the option '--options_file', the following error appears: Multiple options files not implemented.

The reason why this is happening is because highs_api.py, inside the function actualSolve uses by default that option, so the user can't use this option because pulp already does.