Added missing header
parent
289382ea76
commit
beb3985c8c
|
@ -18,6 +18,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <gtsam/base/Testable.h>
|
||||||
#include <gtsam/discrete/DecisionTree-inl.h>
|
#include <gtsam/discrete/DecisionTree-inl.h>
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
@ -70,7 +71,8 @@ namespace gtsam {
|
||||||
|
|
||||||
AlgebraicDecisionTree() : Base(1.0) {}
|
AlgebraicDecisionTree() : Base(1.0) {}
|
||||||
|
|
||||||
explicit AlgebraicDecisionTree(const Base& add) : Base(add) {}
|
// Explicitly non-explicit constructor
|
||||||
|
AlgebraicDecisionTree(const Base& add) : Base(add) {}
|
||||||
|
|
||||||
/** Create a new leaf function splitting on a variable */
|
/** Create a new leaf function splitting on a variable */
|
||||||
AlgebraicDecisionTree(const L& label, double y1, double y2)
|
AlgebraicDecisionTree(const L& label, double y1, double y2)
|
||||||
|
|
Loading…
Reference in New Issue