Android Linear Programming Lp_solve Library
Can someone help me how to use lpsolve55j.jar on Android device. I tried importing it like every other library (putting it in libs folder and adding it in JavaBuildPath -> Libra
Solution 1:
Apache Commons Math is a pure Java library that contains for example the Simplex algorithm for solving linear programs. Binaries of this library should probably be possible to use as-is in an Android application, alternatively it should be straightforward to build the library specifically for Android.
The associated unit test cases sufficiently illustrates the usage of the Apache Commons MathSimplexSolver for solving different kinds of smaller LP problems.
Post a Comment for "Android Linear Programming Lp_solve Library"