Skip to content

Commit c9b7c5d

Browse files
pratzlgithub-actions[bot]
authored andcommitted
:octocat: Applied clang-format.
1 parent 56d193c commit c9b7c5d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/graph/algorithm/dijkstra_shortest_paths.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ template <index_adjacency_list G,
201201
class Combine = plus<ranges::range_value_t<Distances>>>
202202
requires is_arithmetic_v<ranges::range_value_t<Distances>> && //
203203
convertible_to<vertex_id_t<G>, ranges::range_value_t<Predecessors>> &&
204-
basic_edge_weight_function<G, WF, ranges::range_value_t<Distances>, Compare, Combine>
205-
// && dijkstra_visitor<G, Visitor>
204+
basic_edge_weight_function<G, WF, ranges::range_value_t<Distances>, Compare, Combine>
205+
// && dijkstra_visitor<G, Visitor>
206206
void dijkstra_shortest_paths(
207207
G& g,
208208
const vertex_id_t<G> source,
@@ -341,7 +341,7 @@ template <index_adjacency_list G,
341341
class Combine = plus<ranges::range_value_t<Distances>>>
342342
requires is_arithmetic_v<ranges::range_value_t<Distances>> && //
343343
basic_edge_weight_function<G, WF, ranges::range_value_t<Distances>, Compare, Combine>
344-
//&& dijkstra_visitor<G, Visitor>
344+
//&& dijkstra_visitor<G, Visitor>
345345
void dijkstra_shortest_distances(
346346
G& g,
347347
const vertex_id_t<G> source,

0 commit comments

Comments
 (0)