Changeset 2221:c7261e981330 in lemon-0.x
- Timestamp:
- 09/26/06 14:20:22 (17 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2959
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/lp.h
r2218 r2221 82 82 } //namespace lemon 83 83 84 #endif //LEMON_LP_ BASE_H84 #endif //LEMON_LP_H -
test/mip_test.cc
r2218 r2221 4 4 #include <lemon/mip_cplex.h> 5 5 #include <lemon/mip_glpk.h> 6 #include<lemon/config.h> 6 7 #ifdef HAVE_CONFIG_H 8 #include <config.h> 9 #endif 10 11 7 12 8 13 using namespace lemon; … … 63 68 64 69 //Maximization of x1 65 //over the triangle with vertices 70 //over the triangle with vertices (0,0),(4/5,2/5),(0,2) 66 71 double expected_opt=4.0/5.0; 67 72 solveAndCheck(mip, MipSolverBase::OPTIMAL, expected_opt); … … 91 96 #endif 92 97 93 94 95 98 #ifdef HAVE_CPLEX 96 //std::cout<<ATTILA<<INTEGER;97 99 MipCplex mip2; 98 100 aTest(mip2);
Note: See TracChangeset
for help on using the changeset viewer.