equal
deleted
inserted
replaced
22 |
22 |
23 #include <lemon/lp_glpk.h> |
23 #include <lemon/lp_glpk.h> |
24 |
24 |
25 namespace lemon { |
25 namespace lemon { |
26 |
26 |
|
27 ///\e |
|
28 |
|
29 ///\bug Unimplemented! |
|
30 /// |
|
31 LpSolverBase &LpGlpk::_newLp() |
|
32 { |
|
33 return *((LpSolverBase *)0); |
|
34 } |
|
35 |
|
36 ///\e |
|
37 |
|
38 ///\bug Unimplemented! |
|
39 /// |
|
40 LpSolverBase &LpGlpk::_copyLp() |
|
41 { |
|
42 return *((LpSolverBase *)0); |
|
43 } |
|
44 |
27 LpGlpk::LpGlpk() : Parent(), |
45 LpGlpk::LpGlpk() : Parent(), |
28 lp(lpx_create_prob()) { |
46 lp(lpx_create_prob()) { |
29 ///\todo constrol function for this: |
47 ///\todo constrol function for this: |
30 lpx_set_int_parm(lp, LPX_K_DUAL, 1); |
48 lpx_set_int_parm(lp, LPX_K_DUAL, 1); |
31 messageLevel(0); |
49 messageLevel(0); |