Skip to content

Commit

Permalink
:octocat: Applied clang-format.
Browse files Browse the repository at this point in the history
  • Loading branch information
pratzl authored and github-actions[bot] committed Nov 26, 2023
1 parent 193a886 commit c48865c
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 47 deletions.
3 changes: 2 additions & 1 deletion include/graph/algorithm/dijkstra_clrs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ void dijkstra_clrs(
vertex_id_t<G> seed, // starting vertex_id
Distance& distance, // out: distance[uid] of uid from seed
Predecessor& predecessor, // out: predecessor[uid] of uid in path
WF&& weight = [](edge_reference_t<G> uv) { return ranges::range_value_t<Distance>(1); }) // default weight(uv) -> 1
WF&& weight =
[](edge_reference_t<G> uv) { return ranges::range_value_t<Distance>(1); }) // default weight(uv) -> 1
{
using id_type = vertex_id_t<G>;
using weight_type = invoke_result_t<WF, edge_reference_t<G>>;
Expand Down
Loading

0 comments on commit c48865c

Please sign in to comment.