Returns the solution for the given lp, solving it externally using the "lp_solve" terminal command
1 | solver.solveAndGetSolution.lpsolve.external(lp.glpk, solverConfig)
|
1 2 3 4 | lp.glpk = initProbGLPK()
readLPGLPK(lp.glpk, fname="glpkAPI.lp")
solverConfig = list(name = "lpsolve", external = T, mipGap = 0.0001, timeout = 1000, verbose = T)
solution.lpsolve = solver.solveAndGetSolution.lpsolve.external(lp.glpk, solverConfig)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.