Skip to content
Snippets Groups Projects
Commit 4ec16151 authored by Kilian Verhetsel's avatar Kilian Verhetsel
Browse files

Removed nested angle brackets from search.hpp

parent b5891a6c
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,7 @@ void breadth_first_search(State &init, Visitor &visit, Successor &fn) {
template<typename State,
typename Visitor,
typename Successor,
typename Compare = std::less<State>>
typename Compare = std::less<State> >
void best_first_search(State &init, Visitor &visit, Successor &fn,
Compare c = Compare()) {
tree_search(init, visit, fn, std::priority_queue<State, Compare>(c));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment