15 #include "nav2_behavior_tree/plugins/condition/would_a_smoother_recovery_help_condition.hpp"
18 namespace nav2_behavior_tree
21 WouldASmootherRecoveryHelp::WouldASmootherRecoveryHelp(
22 const std::string & condition_name,
23 const BT::NodeConfiguration & conf)
24 : AreErrorCodesPresent(condition_name, conf)
26 error_codes_to_check_ = {
27 ActionResult::UNKNOWN,
28 ActionResult::TIMEOUT,
29 ActionResult::FAILED_TO_SMOOTH_PATH,
30 ActionResult::SMOOTHED_PATH_IN_COLLISION
36 #include "behaviortree_cpp/bt_factory.h"
37 BT_REGISTER_NODES(factory)
40 "WouldASmootherRecoveryHelp");