#include <OSiLWriter.h>
Collaboration diagram for OSiLWriter:
Public Member Functions | |
OSiLWriter () | |
Default constructor. | |
~OSiLWriter () | |
Class destructor. | |
std::string | writeOSiL (const OSInstance *theosinstance) |
create an osil string from an OSInstance object | |
Public Attributes | |
bool | m_bWriteBase64 |
m_bWriteBase64 is set to true if we encode the linear constraint coefficients in base64 binary | |
bool | m_bWhiteSpace |
m_bWhiteSpace is set to true if we write white space in the file | |
std::string | m_sB64encoded |
m_sB64encoded is a string of data (start, colIdx, rowIdx, or values) from linear constraints coefficients encoded in base64 binary | |
Private Attributes | |
const OSInstance * | m_OSInstance |
m_OSInstance is an object in the class OSInstance |
Definition at line 30 of file OSiLWriter.h.
OSiLWriter::OSiLWriter | ( | ) |
Default constructor.
Definition at line 34 of file OSiLWriter.cpp.
References m_bWhiteSpace, and m_bWriteBase64.
OSiLWriter::~OSiLWriter | ( | ) |
std::string OSiLWriter::writeOSiL | ( | const OSInstance * | theosinstance | ) |
create an osil string from an OSInstance object
theosinstance | is a pointer to an OSInstance object |
Definition at line 42 of file OSiLWriter.cpp.
References Objective::coef, Objective::constant, InstanceHeader::description, ObjCoef::idx, OSInstance::instanceData, OSInstance::instanceHeader, Variable::lb, m_bWhiteSpace, m_OSInstance, Objective::maxOrMin, Objective::name, Variable::name, InstanceHeader::name, Objective::numberOfObjCoef, Objectives::numberOfObjectives, Variables::numberOfVariables, Objectives::obj, InstanceData::objectives, os_dtoa_format(), OS_SCHEMA_VERSION, OSDBL_MAX, OSNAN, InstanceHeader::source, Variable::type, Variable::ub, ObjCoef::value, Variables::var, InstanceData::variables, and Objective::weight.
Referenced by getOSiLFromMps(), getOSiLFromNl(), main(), solve(), and OSMatlab::solve().
const OSInstance* OSiLWriter::m_OSInstance [private] |
m_OSInstance is an object in the class OSInstance
Definition at line 35 of file OSiLWriter.h.
Referenced by writeOSiL().
m_bWriteBase64 is set to true if we encode the linear constraint coefficients in base64 binary
Definition at line 64 of file OSiLWriter.h.
Referenced by OSiLWriter().
m_bWhiteSpace is set to true if we write white space in the file
Definition at line 68 of file OSiLWriter.h.
Referenced by main(), OSiLWriter(), OSMatlab::solve(), and writeOSiL().
std::string OSiLWriter::m_sB64encoded |
m_sB64encoded is a string of data (start, colIdx, rowIdx, or values) from linear constraints coefficients encoded in base64 binary
Definition at line 73 of file OSiLWriter.h.