Skip to content

Commit

Permalink
fix runtime error
Browse files Browse the repository at this point in the history
Signed-off-by: Masaya Kataoka <[email protected]>
  • Loading branch information
hakuturu583 committed Feb 10, 2025
1 parent cd6f53d commit 4b85d7d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class ActionNodeBase : public BT::ActionNodeBase
BT::OutputPort<traffic_simulator::behavior::Request>("request"),
BT::InputPort<entity_behavior::EntityStatusDict>("other_entity_status"),
BT::InputPort<std::vector<lanelet::Id>>("route_lanelets"),
BT::InputPort<std::shared_ptr<traffic_simulator::TrafficLights>>("traffic_lights"),
BT::InputPort<std::shared_ptr<traffic_simulator::TrafficLightsBase>>("traffic_lights"),
BT::OutputPort<std::shared_ptr<hdmap_utils::HdMapUtils>>("hdmap_utils"),
BT::OutputPort<std::optional<traffic_simulator_msgs::msg::Obstacle>>("obstacle"),
BT::OutputPort<traffic_simulator_msgs::msg::WaypointsArray>("waypoints")};
Expand All @@ -89,7 +89,7 @@ class ActionNodeBase : public BT::ActionNodeBase
std::shared_ptr<constraints::ConstraintActivatorBase> activator;
traffic_simulator::behavior::Request request;
std::shared_ptr<hdmap_utils::HdMapUtils> hdmap_utils;
std::shared_ptr<traffic_simulator::TrafficLights> traffic_lights;
std::shared_ptr<traffic_simulator::TrafficLightsBase> traffic_lights;
std::shared_ptr<traffic_simulator::CanonicalizedEntityStatus> entity_status;
double current_time;
double step_time;
Expand Down

0 comments on commit 4b85d7d

Please sign in to comment.