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