diff -r 58357e986a08 -r 20dac2104519 test/mip_test.cc --- a/test/mip_test.cc Sun Apr 26 16:36:23 2009 +0100 +++ b/test/mip_test.cc Tue Apr 28 13:51:34 2009 +0100 @@ -22,15 +22,15 @@ #include #endif -#ifdef HAVE_CPLEX +#ifdef LEMON_HAVE_CPLEX #include #endif -#ifdef HAVE_GLPK +#ifdef LEMON_HAVE_GLPK #include #endif -#ifdef HAVE_CBC +#ifdef LEMON_HAVE_CBC #include #endif @@ -129,7 +129,7 @@ int main() { -#ifdef HAVE_GLPK +#ifdef LEMON_HAVE_GLPK { GlpkMip mip1; aTest(mip1); @@ -137,7 +137,7 @@ } #endif -#ifdef HAVE_CPLEX +#ifdef LEMON_HAVE_CPLEX try { CplexMip mip2; aTest(mip2); @@ -147,7 +147,7 @@ } #endif -#ifdef HAVE_CBC +#ifdef LEMON_HAVE_CBC { CbcMip mip1; aTest(mip1);