Lp_glpk.Simplexval solve :
?term_output:bool ->
?msg_lev:T.Msg.t option ->
?meth:T.Smcp.Meth.t option ->
?pricing:T.Smcp.Pt.t option ->
?r_test:T.Smcp.Rt.t option ->
?it_lim:int option ->
?tm_lim:int option ->
Lp.Problem.t ->
(float * float Lp.PMap.t, string) Stdlib.resultsolve pb solves the problem pb using GLPK with the simplex algorithm. This function does not support integer or boolean variables. It passes arguments to the solver to guide the search. If the problem is optimal or feasible (when the search stopped), the found solution is returned. If the problem is malformed, unbounded, or infeasible, it returns an error.
If the function is called without parameters, the default parameters from GLPK will be used.