From d6d75b8e4c3d2a96b305f619368a0c2488e0a7bd Mon Sep 17 00:00:00 2001 From: pratzl Date: Sun, 28 May 2023 18:29:06 +0000 Subject: [PATCH] :octocat: Applied clang-format. --- include/graph/views/depth_first_search.hpp | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/include/graph/views/depth_first_search.hpp b/include/graph/views/depth_first_search.hpp index 14980bc..d268f59 100644 --- a/include/graph/views/depth_first_search.hpp +++ b/include/graph/views/depth_first_search.hpp @@ -617,12 +617,12 @@ TAG_INVOKE_DEF(vertices_depth_first_search); // vertices_depth_first_search(g,se template concept _has_vtx_dfs_adl = vertex_range && requires(G&& g, vertex_id_t seed, const A& alloc) { - { vertices_depth_first_search(g, seed, alloc) }; - }; + { vertices_depth_first_search(g, seed, alloc) }; +}; template concept _has_vtx_dfs_vvf_adl = vertex_range && requires(G&& g, vertex_id_t seed, const VVF& vvf, const A& alloc) { - { vertices_depth_first_search(g, seed, vvf, alloc) }; - }; + { vertices_depth_first_search(g, seed, vvf, alloc) }; +}; // edges_depth_first_search CPO // sourced_edges_depth_first_search @@ -633,22 +633,22 @@ TAG_INVOKE_DEF(sourced_edges_depth_first_search); // sourced_edges_depth_first_s template concept _has_edg_dfs_adl = vertex_range && requires(G&& g, vertex_id_t seed, const A& alloc) { - { edges_depth_first_search(g, seed, alloc) }; - }; + { edges_depth_first_search(g, seed, alloc) }; +}; template concept _has_edg_dfs_evf_adl = vertex_range && requires(G&& g, vertex_id_t seed, const EVF& evf, const A& alloc) { - { edges_depth_first_search(g, seed, evf, alloc) }; - }; + { edges_depth_first_search(g, seed, evf, alloc) }; +}; template concept _has_src_edg_dfs_adl = vertex_range && requires(G&& g, vertex_id_t seed, const A& alloc) { - { sourced_edges_depth_first_search(g, seed, alloc) }; - }; + { sourced_edges_depth_first_search(g, seed, alloc) }; +}; template concept _has_src_edg_dfs_evf_adl = vertex_range && requires(G&& g, vertex_id_t seed, const EVF& evf, const A& alloc) { - { sourced_edges_depth_first_search(g, seed, evf, alloc) }; - }; + { sourced_edges_depth_first_search(g, seed, evf, alloc) }; + }; } // namespace std::graph::tag_invoke