Skip to content

Commit 4e4efa5

Browse files
pratzlgithub-actions[bot]
authored andcommitted
:octocat: Applied clang-format.
1 parent 3a2ff8a commit 4e4efa5

File tree

4 files changed

+57
-56
lines changed

4 files changed

+57
-56
lines changed

include/graph/algorithm/shortest_paths.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ template <index_adjacency_list G,
150150
class WF = function<ranges::range_value_t<Distances>(edge_reference_t<G>)>, //
151151
class Allocator = allocator<vertex_id_t<G>> //
152152
>
153-
requires is_arithmetic_v<ranges::range_value_t<Distances>> && //
154-
convertible_to<vertex_id_t<G>, ranges::range_value_t<Predecessors>> && //
153+
requires is_arithmetic_v<ranges::range_value_t<Distances>> && //
154+
convertible_to<vertex_id_t<G>, ranges::range_value_t<Predecessors>> && //
155155
edge_weight_function<G, WF, ranges::range_value_t<Distances>>
156156
void dijkstra_shortest_paths(
157157
G&& g, // graph
@@ -219,7 +219,7 @@ template <index_adjacency_list G,
219219
class WF = std::function<ranges::range_value_t<Distances>(edge_reference_t<G>)>, //
220220
class Allocator = allocator<vertex_id_t<G>> //
221221
>
222-
requires is_arithmetic_v<ranges::range_value_t<Distances>> && //
222+
requires is_arithmetic_v<ranges::range_value_t<Distances>> && //
223223
edge_weight_function<G, WF, ranges::range_value_t<Distances>>
224224
void dijkstra_shortest_distances(
225225
G&& g, // graph
@@ -260,8 +260,8 @@ template <index_adjacency_list G,
260260
class WF = function<ranges::range_value_t<Distances>(edge_reference_t<G>)>, //
261261
class Allocator = allocator<vertex_id_t<G>> //
262262
>
263-
requires is_arithmetic_v<ranges::range_value_t<Distances>> && //
264-
convertible_to<vertex_id_t<G>, ranges::range_value_t<Predecessors>> && //
263+
requires is_arithmetic_v<ranges::range_value_t<Distances>> && //
264+
convertible_to<vertex_id_t<G>, ranges::range_value_t<Predecessors>> && //
265265
basic_edge_weight_function<G, WF, ranges::range_value_t<Distances>, Compare, Combine>
266266
void dijkstra_shortest_paths(
267267
G&& g, // graph
@@ -333,7 +333,7 @@ template <index_adjacency_list G,
333333
class WF = std::function<ranges::range_value_t<Distances>(edge_reference_t<G>)>, //
334334
class Allocator = allocator<vertex_id_t<G>> //
335335
>
336-
requires is_arithmetic_v<ranges::range_value_t<Distances>> && //
336+
requires is_arithmetic_v<ranges::range_value_t<Distances>> && //
337337
basic_edge_weight_function<G, WF, ranges::range_value_t<Distances>, Compare, Combine>
338338
void dijkstra_shortest_distances(
339339
G&& g, // graph

0 commit comments

Comments
 (0)