diff --git a/gtsam/discrete/DecisionTree-inl.h b/gtsam/discrete/DecisionTree-inl.h index af52a6daf..259489f06 100644 --- a/gtsam/discrete/DecisionTree-inl.h +++ b/gtsam/discrete/DecisionTree-inl.h @@ -662,7 +662,7 @@ namespace gtsam { DecisionTree DecisionTree::apply(const DecisionTree& g, const Binary& op) const { // It is unclear what should happen if either tree is empty: - if (empty() or g.empty()) { + if (empty() || g.empty()) { throw std::runtime_error( "DecisionTree::apply(binary op) undefined for empty trees."); }