# HG changeset patch # User klao # Date 1132114969 0 # Node ID 91b8b9cea2f7f8500180d5413d914828af261620 # Parent b6a58c8bea8789e615fb252631ae6c43b1c9f9b9 lp_test.cc: * bugfix in cplex part: check compiling and running on two different instances diff -r b6a58c8bea87 -r 91b8b9cea2f7 test/lp_test.cc --- a/test/lp_test.cc Tue Nov 15 20:51:06 2005 +0000 +++ b/test/lp_test.cc Wed Nov 16 04:22:49 2005 +0000 @@ -290,9 +290,9 @@ #endif #ifdef HAVE_CPLEX - LpCplex lp_cplex; - lpTest(lp_cplex); - aTest(lp_cplex); + LpCplex lp_cplex1,lp_cplex2; + lpTest(lp_cplex1); + aTest(lp_cplex2); #endif return 0;