Configuration settings for the MixedIntegerBranchAndBound constructor.
#include <drake/solvers/branch_and_bound.h>
Public Member Functions | |
Options () | |
template<typename Archive > | |
void | Serialize (Archive *a) |
Passes this object to an Archive. More... | |
Public Attributes | |
int | max_explored_nodes {-1} |
The maximal number of explored nodes in the tree. More... | |
Options | ( | ) |
void Serialize | ( | Archive * | a | ) |
Passes this object to an Archive.
Refer to YAML Serialization for background.
int max_explored_nodes {-1} |
The maximal number of explored nodes in the tree.
The branch and bound process will terminate if the tree has explored this number of nodes. max_explored_nodes <= 0 means that we don't put an upper bound on the number of explored nodes.