|
| | AlgebraicDecisionTree () |
| |
| | AlgebraicDecisionTree (const Super &add) |
| |
| | AlgebraicDecisionTree (const L &label, double y1, double y2) |
| |
| | AlgebraicDecisionTree (const typename Super::LabelC &labelC, double y1, double y2) |
| |
| | AlgebraicDecisionTree (const std::vector< typename Super::LabelC > &labelCs, const std::vector< double > &ys) |
| |
| | AlgebraicDecisionTree (const std::vector< typename Super::LabelC > &labelCs, const std::string &table) |
| |
| template<typename Iterator > |
| | AlgebraicDecisionTree (Iterator begin, Iterator end, const L &label) |
| |
| template<typename M > |
| | AlgebraicDecisionTree (const AlgebraicDecisionTree< M > &other, const std::map< M, L > &map) |
| |
| AlgebraicDecisionTree | operator* (const AlgebraicDecisionTree &g) const |
| |
| AlgebraicDecisionTree | operator+ (const AlgebraicDecisionTree &g) const |
| |
| AlgebraicDecisionTree | operator/ (const AlgebraicDecisionTree &g) const |
| |
| AlgebraicDecisionTree | sum (const L &label, size_t cardinality) const |
| |
| AlgebraicDecisionTree | sum (const typename Super::LabelC &labelC) const |
| |
| | DecisionTree (const double &y) |
| |
| | DecisionTree (const L &label, const double &y1, const double &y2) |
| |
| | DecisionTree (const LabelC &label, const double &y1, const double &y2) |
| |
| | DecisionTree (const std::vector< LabelC > &labelCs, const std::vector< double > &ys) |
| |
| | DecisionTree (const std::vector< LabelC > &labelCs, const std::string &table) |
| |
| | DecisionTree (Iterator begin, Iterator end, const L &label) |
| |
| | DecisionTree (const L &label, const DecisionTree &f0, const DecisionTree &f1) |
| |
| | DecisionTree (const DecisionTree< M, X > &other, const std::map< M, L > &map, boost::function< double(const X &)> op) |
| |
| | DecisionTree (const NodePtr &root) |
| |
| NodePtr | compose (Iterator begin, Iterator end, const L &label) const |
| |
| void | print (const std::string &s="DecisionTree") const |
| |
| bool | equals (const DecisionTree &other, double tol=1e-9) const |
| |
| virtual | ~DecisionTree () |
| |
| bool | operator== (const DecisionTree &q) const |
| |
| const double & | operator() (const Assignment< L > &x) const |
| |
| DecisionTree | apply (const Unary &op) const |
| |
| DecisionTree | apply (const DecisionTree &g, const Binary &op) const |
| |
| DecisionTree | choose (const L &label, size_t index) const |
| |
| DecisionTree | combine (const L &label, size_t cardinality, const Binary &op) const |
| |
| DecisionTree | combine (const LabelC &labelC, const Binary &op) const |
| |
| void | dot (std::ostream &os, bool showZero=true) const |
| |
| void | dot (const std::string &name, bool showZero=true) const |
| |
template<typename L>
class gtsam::AlgebraicDecisionTree< L >
Algebraic Decision Trees fix the range to double Just has some nice constructors and some syntactic sugar TODO: consider eliminating this class altogether?
Definition at line 31 of file AlgebraicDecisionTree.h.