#include <OSOption.h>
Collaboration diagram for SOSVariableBranchingWeights:
Public Member Functions | |
SOSVariableBranchingWeights () | |
Default constructor. | |
~SOSVariableBranchingWeights () | |
Class destructor. | |
bool | IsEqual (SOSVariableBranchingWeights *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. | |
bool | setSOS (int numberOfSOS, SOSWeights **sos) |
A function to set an array of <sos> elements. | |
bool | addSOS (int sosIdx, int nvar, double weight, int *idx, double *value, std::string *name) |
A function to add an <sos> element. | |
Public Attributes | |
int | numberOfSOS |
number of <sos> children | |
SOSWeights ** | sos |
branching weights for the SOS |
Definition at line 1634 of file OSOption.h.
SOSVariableBranchingWeights::SOSVariableBranchingWeights | ( | ) |
SOSVariableBranchingWeights::~SOSVariableBranchingWeights | ( | ) |
bool SOSVariableBranchingWeights::IsEqual | ( | SOSVariableBranchingWeights * | that | ) |
A function to check for the equality of two objects.
Definition at line 10022 of file OSOption.cpp.
References numberOfSOS, and sos.
bool SOSVariableBranchingWeights::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 11613 of file OSOption.cpp.
References n, numberOfSOS, OSRand(), SOSWeights::setRandom(), and sos.
Referenced by VariableOption::setRandom().
bool SOSVariableBranchingWeights::setSOS | ( | int | numberOfSOS, | |
SOSWeights ** | sos | |||
) |
A function to set an array of <sos> elements.
numberOfSOS,: | number of <sos> elements to be set | |
sos,: | the array of <sos> elements that are to be set |
Definition at line 5419 of file OSOption.cpp.
References ErrorClass::errormsg, SOSWeights::groupWeight, SOSWeights::numberOfVar, sos, SOSWeights::sosIdx, and SOSWeights::var.
Referenced by OSOption::setSOSVariableBranchingWeights().
bool SOSVariableBranchingWeights::addSOS | ( | int | sosIdx, | |
int | nvar, | |||
double | weight, | |||
int * | idx, | |||
double * | value, | |||
std::string * | name | |||
) |
A function to add an <sos> element.
sosIdx,: | the index of the SOS that is to be added (refer back to OSiL file) | |
nvar,: | the number of variables in this SOS that are to be given weights | |
weight,: | a selection weight for the entire group of variables | |
idx,: | an array of variable indices | |
value,: | the array of corresponding selection weights |
Definition at line 5470 of file OSOption.cpp.
References ErrorClass::errormsg, SOSWeights::groupWeight, BranchingWeight::idx, BranchingWeight::name, numberOfSOS, SOSWeights::numberOfVar, sos, SOSWeights::sosIdx, BranchingWeight::value, and SOSWeights::var.
Referenced by OSOption::setAnotherSOSVariableBranchingWeight().
number of <sos> children
Definition at line 1639 of file OSOption.h.
Referenced by addSOS(), OSOption::getNumberOfSOS(), OSOption::getNumberOfSOSVarBranchingWeights(), IsEqual(), setRandom(), OSOption::setSOSVariableBranchingWeights(), and ~SOSVariableBranchingWeights().
branching weights for the SOS
Definition at line 1642 of file OSOption.h.
Referenced by addSOS(), OSOption::getNumberOfSOSVarBranchingWeights(), OSOption::getSOSVariableBranchingWeightsSparse(), IsEqual(), setRandom(), setSOS(), SOSVariableBranchingWeights(), and ~SOSVariableBranchingWeights().