Open jechaviz opened 5 years ago
I found this article with a list of opensource alternatives,
https://www.quora.com/What-are-some-good-open-source-alternatives-to-CPLEX-linear-program-solver
Also in comments Red Hat’s OptaPlanner (open source, Apache License, java) handles the same use cases.
Hi @jechaviz,
Thank you for the suggestions and your continuous attention on this project, I will try improving this project and provide alternative solver option based on your suggestions later.
A bit busy with work issues recently, I'll have a look when things are done. Thanks!
I have looked and pulp or juliaOpt looks like a decent option https://www.quora.com/How-do-Sage-SciPys-optimization-tools-such-linprog-compare-with-CPLEX-and-Gurobi-to-solve-LP-problems http://www.juliaopt.org/ About Julia I also found http://numba.pydata.org/ And this sample for julia and cpcsolver https://stackoverflow.com/questions/56693467/how-can-we-speed-up-for-loops-in-pulp
I found also soplex. I think this is the closest option to migration.
was this question picked up by somebody? culex is way too expensive and I am not having educational email to get it for free, would be nice to see it ported to a freeware culex-alternative
The related issue #9 might be merged with this issue?
What about considering one of the following?
scipy.optimize.linprog(..., method='simplex')
pulp.apis.CPLEX
The related issue #9 might be merged with this issue?
What about considering one of the following?
scipy.optimize.linprog(..., method='simplex')
pulp.apis.CPLEX
Pip Install Might work
As cplex is a commercial software, maybe you could add a config option to choose scipy instead cplex for optimizacion.
just like https://github.com/wardbradt/peregrine
Thank you