10 #ifndef GLPKIMPLEMENTATION_H 11 #define GLPKIMPLEMENTATION_H 27 double solve(std::vector<double>& variables,
28 std::vector<double> coeffs,
29 std::vector<std::vector<double>> eqCoeffs,
30 std::vector<double> eqValue,
31 std::vector<std::vector<double>> ineqCoeffs,
32 std::vector<double> ineqValue);
35 double simplexSolve(glp_prob *lp, std::vector<double>& variables);
36 double interiorPointSolve(glp_prob *lp, std::vector<double>& variables);
double solve(std::vector< double > &variables, std::vector< double > coeffs, std::vector< std::vector< double >> eqCoeffs, std::vector< double > eqValue, std::vector< std::vector< double >> ineqCoeffs, std::vector< double > ineqValue)
GlpkImplementation(LpImplementation::LpAlgo algo)