equal
deleted
inserted
replaced
21 /// This program is a simple application of the LEMON LP solver |
21 /// This program is a simple application of the LEMON LP solver |
22 /// interface: we formulate a linear programming (LP) problem and then |
22 /// interface: we formulate a linear programming (LP) problem and then |
23 /// solve it using the underlying solver (GLPK or CPLEX for |
23 /// solve it using the underlying solver (GLPK or CPLEX for |
24 /// example). For the detailed documentation of the LEMON LP solver |
24 /// example). For the detailed documentation of the LEMON LP solver |
25 /// interface read \ref lemon::LpSolverBase "this". |
25 /// interface read \ref lemon::LpSolverBase "this". |
|
26 /// |
|
27 /// \include lp_demo.cc |
26 |
28 |
27 #include <lemon/lp.h> |
29 #include <lemon/lp.h> |
28 |
30 |
29 #include <iostream> |
31 #include <iostream> |
30 |
32 |