#include <OSInstance.h>
Collaboration diagram for Constraint:
Public Member Functions | |
Constraint () | |
The Constraint class constructor. | |
~Constraint () | |
The Constraint class destructor. | |
bool | IsEqual (Constraint *that) |
A function to check for the equality of two objects. | |
Constraint () | |
The Constraint class constructor. | |
~Constraint () | |
The Constraint class destructor. | |
Public Attributes | |
std::string | name |
name is the name of the constraint | |
double | constant |
constant is a value that is added to the constraint | |
double | lb |
lb is the lower bound on the constraint | |
double | ub |
ub is the upper bound on the constraint |
Definition at line 252 of file OSInstance.h.
Constraint::Constraint | ( | ) |
Constraint::~Constraint | ( | ) |
Constraint::Constraint | ( | ) |
The Constraint class constructor.
Constraint::~Constraint | ( | ) |
The Constraint class destructor.
bool Constraint::IsEqual | ( | Constraint * | that | ) |
std::string Constraint::name |
name is the name of the constraint
Definition at line 263 of file OSInstance.h.
Referenced by IsEqual(), and OSInstance::processConstraints().
double Constraint::constant |
constant is a value that is added to the constraint
Definition at line 266 of file OSInstance.h.
Referenced by IsEqual(), and OSInstance::processConstraints().
double Constraint::lb |
lb is the lower bound on the constraint
Definition at line 269 of file OSInstance.h.
Referenced by IsEqual(), and OSInstance::processConstraints().
double Constraint::ub |
ub is the upper bound on the constraint
Definition at line 272 of file OSInstance.h.
Referenced by IsEqual(), and OSInstance::processConstraints().