diff --git a/test/mip_test.cc b/test/mip_test.cc --- a/test/mip_test.cc +++ b/test/mip_test.cc @@ -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);