My Project
OSmps2osil.h
Go to the documentation of this file.
1/* $Id$ */
17#ifndef OSMPS2OSIL_H
18#define OSMPS2OSIL_H
19
20
21#include <CoinMpsIO.hpp>
22#include <CoinPackedMatrix.hpp>
23#include <string>
24#include "OSInstance.h"
25
26
40{
41public:
43 OSmps2osil( std::string mpsfilename);
44
47
53 bool createOSInstance();
54
59private:
61 CoinMpsIO *m_MpsData;
63 CoinPackedMatrix *m_CoinPackedMatrix;
64};
65#endif
66
The in-memory representation of an OSiL instance..
The OSmps2osil Class.
Definition OSmps2osil.h:40
OSmps2osil(std::string mpsfilename)
the OSmps2osil class constructor
~OSmps2osil()
the OSmps2osil class destructor
bool createOSInstance()
create an OSInstance from the MPS instance representation
CoinMpsIO * m_MpsData
m_MpsData is a pointer to a CoinMpsIO object
Definition OSmps2osil.h:61
OSInstance * osinstance
osinstance is a pointer to the OSInstance object that gets created from the instance represented in N...
Definition OSmps2osil.h:58
CoinPackedMatrix * m_CoinPackedMatrix
m_CoinPackedMatrix is a pointer to a CoinPackedMatrix object
Definition OSmps2osil.h:63