MCPcopy Create free account
hub / github.com/dartsim/dart / setUpperBounds

Method setUpperBounds

dart/optimizer/Problem.cpp:191–196  ·  view source on GitHub ↗

==============================================================================

Source from the content-addressed store, hash-verified

189
190//==============================================================================
191void Problem::setUpperBounds(const Eigen::VectorXd& _ub)
192{
193 DART_ASSERT(
194 static_cast<std::size_t>(_ub.size()) == mDimension && "Invalid size.");
195 mUpperBounds = _ub;
196}
197
198//==============================================================================
199const Eigen::VectorXd& Problem::getUpperBounds() const

Callers 5

findSolutionMethod · 0.45
findSolutionMethod · 0.45
ProblemFunction · 0.45
testZDT1Function · 0.45
testZDT1GenericFunction · 0.45

Calls 1

sizeMethod · 0.45

Tested by 2

testZDT1Function · 0.36
testZDT1GenericFunction · 0.36