Are there any library solvers for solving linear programming problems, for example, the simplex method, for android studio
Asked
Active
Viewed 26 times
0
-
You probably mean java libraries? Take a look at this question: https://stackoverflow.com/q/260442. In Android Studio (gradle), you can add your dependencies in Project > Gradle Scripts > build.gradle (Module: ...) > dependencies {}. Use implementation '...' – Cactusroot May 27 '22 at 17:57