test/lp_test.cc
changeset 1105 62dba6c90f35
parent 1092 dceba191c00d
child 1131 4add05447ca0
     1.1 --- a/test/lp_test.cc	Thu Oct 17 15:08:41 2013 +0200
     1.2 +++ b/test/lp_test.cc	Thu Oct 24 13:04:00 2013 +0200
     1.3 @@ -39,6 +39,9 @@
     1.4  #include <lemon/clp.h>
     1.5  #endif
     1.6  
     1.7 +#ifdef LEMON_HAVE_LP
     1.8 +#include <lemon/lp.h>
     1.9 +#endif
    1.10  using namespace lemon;
    1.11  
    1.12  int countCols(LpBase & lp) {
    1.13 @@ -416,6 +419,15 @@
    1.14    LpSkeleton lp_skel;
    1.15    lpTest(lp_skel);
    1.16  
    1.17 +#ifdef LEMON_HAVE_LP
    1.18 +  {
    1.19 +    Lp lp,lp2;
    1.20 +    lpTest(lp);
    1.21 +    aTest(lp2);
    1.22 +    cloneTest<Lp>();
    1.23 +  }
    1.24 +#endif
    1.25 +
    1.26  #ifdef LEMON_HAVE_GLPK
    1.27    {
    1.28      GlpkLp lp_glpk1,lp_glpk2;