CbcMipStartIO.hpp
Go to the documentation of this file.00001 #ifndef MIPSTARTIO_HPP_INCLUDED
00002 #define MIPSTARTIO_HPP_INCLUDED
00003
00004 #include <vector>
00005 #include <string>
00006 #include <utility>
00007 class CbcModel;
00008
00009 class OsiSolverInterface;
00010
00011
00012
00013
00014
00015 int readMIPStart( CbcModel * model, const char *fileName,
00016 std::vector< std::pair< std::string, double > > &colValues,
00017 double &solObj );
00018
00019
00020
00021 int computeCompleteSolution( CbcModel * model,
00022 const std::vector< std::string > colNames,
00023 const std::vector< std::pair< std::string, double > > &colValues,
00024 double *sol, double &obj );
00025
00026 #endif // MIPSTARTIO_HPP_INCLUDED