Changeset 1464 for trunk/Cbc/examples/driver2.cpp
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:externals
-
old new 1 BuildTools https://projects.coin-or.org/svn/BuildTools/stable/0.5 2 ThirdParty/ASL https://projects.coin-or.org/svn/BuildTools/ThirdParty/ASL/stable/1.0 3 ThirdParty/Blas https://projects.coin-or.org/svn/BuildTools/ThirdParty/Blas/stable/1.0 4 ThirdParty/Lapack https://projects.coin-or.org/svn/BuildTools/ThirdParty/Lapack/stable/1.0 5 ThirdParty/Glpk https://projects.coin-or.org/svn/BuildTools/ThirdParty/Glpk/stable/1.5 6 Data/Sample https://projects.coin-or.org/svn/Data/stable/1.0/Sample 7 CoinUtils https://projects.coin-or.org/svn/CoinUtils/stable/2.6/CoinUtils 8 Cgl https://projects.coin-or.org/svn/Cgl/stable/0.55/Cgl 9 Clp https://projects.coin-or.org/svn/Clp/stable/1.12/Clp 10 Osi https://projects.coin-or.org/svn/Osi/stable/0.103/Osi 11 Vol https://projects.coin-or.org/svn/Vol/stable/1.1/Vol 1 BuildTools https://projects.coin-or.org/svn/BuildTools/trunk 2 ThirdParty/ASL https://projects.coin-or.org/svn/BuildTools/ThirdParty/ASL/trunk 3 ThirdParty/Blas https://projects.coin-or.org/svn/BuildTools/ThirdParty/Blas/trunk 4 ThirdParty/Lapack https://projects.coin-or.org/svn/BuildTools/ThirdParty/Lapack/trunk 5 ThirdParty/Glpk https://projects.coin-or.org/svn/BuildTools/ThirdParty/Glpk/trunk 6 Data/Sample https://projects.coin-or.org/svn/Data/trunk/Sample 7 #Data/miplib3 https://projects.coin-or.org/svn/Data/trunk/miplib3 8 CoinUtils https://projects.coin-or.org/svn/CoinUtils/trunk/CoinUtils 9 Cgl https://projects.coin-or.org/svn/Cgl/trunk/Cgl 10 Clp https://projects.coin-or.org/svn/Clp/trunk/Clp 11 Osi https://projects.coin-or.org/svn/Osi/trunk/Osi 12 #Vol https://projects.coin-or.org/svn/Vol/trunk/Vol
-
- Property svn:mergeinfo changed
/branches/split (added) merged: 1437-1439,1444-1448,1463
- Property svn:externals
-
trunk/Cbc
- Property svn:mergeinfo changed
/branches/split/Cbc (added) merged: 1437-1439,1444-1448,1463
- Property svn:mergeinfo changed
-
trunk/Cbc/examples/driver2.cpp
r333 r1464 12 12 // For Branch and bound 13 13 //#include "CbcStrategy.hpp" 14 #include "CbcConfig.h" 14 15 #include "OsiCbcSolverInterface.hpp" 15 16 … … 36 37 // Read in model using argv[1] 37 38 // and assert that it is a clean model 38 std::string mpsFileName = "../../Data/Sample/p0033.mps"; 39 std::string mpsFileName; 40 #if defined(COIN_HAS_SAMPLE) && defined(SAMPLEDIR) 41 mpsFileName = SAMPLEDIR "/p0033.mps"; 42 #else 43 if (argc < 2) { 44 fprintf(stderr, "Do not know where to find sample MPS files.\n"); 45 exit(1); 46 } 47 #endif 39 48 if (argc>=2) mpsFileName = argv[1]; 40 49 int numMpsReadErrors = solver1.readMps(mpsFileName.c_str(),"");
Note: See TracChangeset
for help on using the changeset viewer.