Skip to content

Commit

Permalink
Fix gcc build
Browse files Browse the repository at this point in the history
  • Loading branch information
ewfuentes committed Sep 28, 2023
1 parent bcb9d14 commit eb94588
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion experimental/beacon_sim/belief_road_map_planner_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ TEST(BeliefRoadMapPlannerTest, diamond_road_map_with_uncorrelated_beacons) {
.max_sensor_range_m = 3.0,
.num_start_connections = 1,
.num_goal_connections = 1,
.uncertainty_tolerance = std::nullopt,
.max_num_edge_transforms = 10000,
};

Expand All @@ -162,7 +163,6 @@ TEST(BeliefRoadMapPlannerTest, diamond_road_map_with_uncorrelated_beacons) {
EXPECT_TRUE(maybe_plan.has_value());
const auto &plan = maybe_plan.value();
for (const int node_id : plan.nodes) {
std::cout << "node id: " << node_id << std::endl;
EXPECT_NE(node_id, 1);
}
}
Expand Down Expand Up @@ -193,6 +193,7 @@ TEST(BeliefRoadMapPlannerTest, diamond_road_map_with_correlated_beacons) {
.max_sensor_range_m = 3.0,
.num_start_connections = 1,
.num_goal_connections = 1,
.uncertainty_tolerance = std::nullopt,
.max_num_edge_transforms = 1000,
};

Expand Down

0 comments on commit eb94588

Please sign in to comment.