equal
deleted
inserted
replaced
27 } |
27 } |
28 |
28 |
29 namespace lemon { |
29 namespace lemon { |
30 |
30 |
31 |
31 |
32 /// \brief Wrapper for GLPK solver |
32 /// \brief Interface for the GLPK LP solver |
33 /// |
33 /// |
34 /// This class implements an interface for GLPK. |
34 /// This class implements an interface for the GLPK LP solver. |
35 ///\ingroup gen_opt_group |
35 ///\ingroup gen_opt_group |
36 class LpGlpk : public LpSolverBase { |
36 class LpGlpk : public LpSolverBase { |
37 protected: |
37 protected: |
38 LPX* lp; |
38 LPX* lp; |
39 |
39 |