Skip to content

Commit

Permalink
🎨 apply clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalkah authored and github-actions[bot] committed Oct 28, 2023
1 parent 43f099a commit 833dfcc
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ int main(int argc, char **argv)
while (true)
{
tree_visualizer->SetGetLogFunction(
std::bind(&planning::IPlanningWithLogging::GetLog, planner));
std::bind(&planning::IPlanningWithLogging::GetLog, planner));
std::cout << "Started" << std::endl;
// Get time
auto start_time{std::chrono::high_resolution_clock::now()};
Expand All @@ -81,7 +81,6 @@ int main(int argc, char **argv)
// set null to get_log_function_ to stop logging
tree_visualizer->SetGetLogFunction(nullptr);
planner->ClearLog();

}

return 0;
Expand Down
1 change: 0 additions & 1 deletion planning/grid_base/dfs/dfs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ Path DFS::FindPath(const Node &start_node, const Node &goal_node,

search_list.push(new_node_parent);
}

}

if (search_list.empty())
Expand Down
1 change: 0 additions & 1 deletion planning/tree_base/rrt_star/rrt_star.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ Path RRTStar::FindPath(const Node &start_node, const Node &goal_node,
return ReconstructPath(final);
}


std::shared_ptr<NodeParent> RRTStar::WireNodeIfPossible(
const Node &random_node,
std::vector<std::shared_ptr<NodeParent>> neighbor_vector,
Expand Down

0 comments on commit 833dfcc

Please sign in to comment.