#include <OSResult.h>
Collaboration diagram for SolverOutput:
Public Member Functions | |
SolverOutput () | |
Default constructor. | |
~SolverOutput () | |
Class destructor. | |
bool | IsEqual (SolverOutput *that) |
A function to check for the equality of two objects. | |
bool | setRandom (double density, bool conformant) |
A function to make a random instance of this class. | |
Public Attributes | |
std::string | name |
the name of the result the user is defining | |
std::string | category |
this element allows a specific category to be associated with this particular type of result | |
std::string | description |
a brief description of the type of result | |
int | numberOfItems |
the number of items contained in this otherSolutionResult | |
std::string * | item |
an array of items (string-valued) |
Definition at line 2086 of file OSResult.h.
SolverOutput::SolverOutput | ( | ) |
SolverOutput::~SolverOutput | ( | ) |
bool SolverOutput::IsEqual | ( | SolverOutput * | that | ) |
A function to check for the equality of two objects.
Definition at line 7852 of file OSResult.cpp.
References category, DEBUG_ISEQUAL_ROUTINES, description, item, name, and numberOfItems.
bool SolverOutput::setRandom | ( | double | density, | |
bool | conformant | |||
) |
A function to make a random instance of this class.
density,: | corresponds to the probability that a particular child element is created | |
conformant,: | if true enforces side constraints not enforceable in the schema (e.g., agreement of "numberOfXXX" atrbutes and <XXX> children) |
Definition at line 8994 of file OSResult.cpp.
References category, item, n, numberOfItems, and OSRand().
Referenced by OtherSolverOutput::setRandom().
std::string SolverOutput::name |
the name of the result the user is defining
Definition at line 2091 of file OSResult.h.
Referenced by OSResult::getSolverOutputName(), IsEqual(), and OSResult::setSolverOutputName().
std::string SolverOutput::category |
this element allows a specific category to be associated with this particular type of result
Definition at line 2096 of file OSResult.h.
Referenced by OSResult::getSolverOutputCategory(), IsEqual(), setRandom(), and OSResult::setSolverOutputCategory().
std::string SolverOutput::description |
a brief description of the type of result
Definition at line 2099 of file OSResult.h.
Referenced by OSResult::getSolverOutputDescription(), IsEqual(), and OSResult::setSolverOutputDescription().
the number of items contained in this otherSolutionResult
Definition at line 2103 of file OSResult.h.
Referenced by OSResult::getSolverOutputItem(), OSResult::getSolverOutputNumberOfItems(), IsEqual(), setRandom(), and OSResult::setSolverOutputNumberOfItems().
std::string* SolverOutput::item |
an array of items (string-valued)
Definition at line 2107 of file OSResult.h.
Referenced by OSResult::getSolverOutputItem(), IsEqual(), setRandom(), OSResult::setSolverOutputItem(), OSResult::setSolverOutputNumberOfItems(), and ~SolverOutput().