diff -r 14ca1624e8e8 -r 389a94a1d9eb test/lp_test.cc --- a/test/lp_test.cc Tue Jun 21 14:57:17 2005 +0000 +++ b/test/lp_test.cc Tue Jun 21 15:58:57 2005 +0000 @@ -17,12 +17,17 @@ void lpTest(LpSolverBase & lp) { + + + typedef LpSolverBase LP; std::vector x(10); // for(int i=0;i<10;i++) x.push_back(lp.addCol()); lp.addColSet(x); +#ifndef GYORSITAS + std::vector y(10); lp.addColSet(y); @@ -174,7 +179,7 @@ ); } - +#endif } void aTest(LpSolverBase & lp) @@ -240,8 +245,9 @@ #endif #ifdef HAVE_CPLEX -// LpCplex lp_cplex; -// lpTest(lp_cplex); + LpCplex lp_cplex; + lpTest(lp_cplex); + aTest(lp_cplex); #endif return 0;