1.1 --- a/test/mip_test.cc Thu Oct 17 15:09:30 2013 +0200
1.2 +++ b/test/mip_test.cc Thu Oct 24 13:04:49 2013 +0200
1.3 @@ -32,6 +32,10 @@
1.4 #include <lemon/cbc.h>
1.5 #endif
1.6
1.7 +#ifdef LEMON_HAVE_MIP
1.8 +#include <lemon/lp.h>
1.9 +#endif
1.10 +
1.11
1.12 using namespace lemon;
1.13
1.14 @@ -128,6 +132,14 @@
1.15 int main()
1.16 {
1.17
1.18 +#ifdef LEMON_HAVE_MIP
1.19 + {
1.20 + Mip mip1;
1.21 + aTest(mip1);
1.22 + cloneTest<Mip>();
1.23 + }
1.24 +#endif
1.25 +
1.26 #ifdef LEMON_HAVE_GLPK
1.27 {
1.28 GlpkMip mip1;