cplexlpcompare
Compares two LP files created in cplex format and dumps differences to files.
|
Represents an LP model composed of a bounds, constraints and variables of different kinds. More...
#include <LPModel.h>
Public Member Functions | |
LPModel () | |
~LPModel () | |
bool | ReadModel (std::string filename) |
Parses an LP file to build an LPModel instance. More... | |
Public Attributes | |
std::vector< std::string > | Generals |
std::vector< std::string > | Binaries |
std::vector< std::string > | SosVars |
std::vector< Bound > | Bounds |
std::vector< Constraint > | Constraints |
Represents an LP model composed of a bounds, constraints and variables of different kinds.
bool lpcompare::LPModel::ReadModel | ( | std::string | filename | ) |
Parses an LP file to build an LPModel instance.
filename | Filename to read data from. |
Definition at line 61 of file LPModel.cpp.
std::vector<Constraint> lpcompare::LPModel::Constraints |