@@ -151,7 +151,7 @@ auto make_index_edges(M& map, const E& edges) {
151
151
*/
152
152
template <std::ranges::random_access_range V,
153
153
std::ranges::random_access_range E,
154
- std::graph::adjacency_list Graph = std::vector<std::vector<size_t >>>
154
+ std::graph::basic_adjacency_list Graph = std::vector<std::vector<size_t >>>
155
155
auto make_plain_graph (const V& vertices, const E& edges, bool directed = true , size_t idx = 0 ) {
156
156
auto vertex_map = make_index_map (vertices);
157
157
auto index_edges = make_plain_edges (vertex_map, edges);
@@ -167,7 +167,7 @@ auto make_plain_graph(const V& vertices, const E& edges, bool directed = true, s
167
167
*/
168
168
template <std::ranges::random_access_range V,
169
169
std::ranges::random_access_range E,
170
- std::graph::adjacency_list Graph = std::vector<std::vector<std::tuple<size_t , size_t >>>>
170
+ std::graph::basic_adjacency_list Graph = std::vector<std::vector<std::tuple<size_t , size_t >>>>
171
171
auto make_index_graph (const V& vertices, const E& edges, bool directed = true , size_t idx = 0 ) {
172
172
173
173
auto vertex_map = make_index_map (vertices);
@@ -185,7 +185,7 @@ auto make_index_graph(const V& vertices, const E& edges, bool directed = true, s
185
185
*/
186
186
template <std::ranges::random_access_range V,
187
187
std::ranges::forward_range E,
188
- std::graph::adjacency_list Graph =
188
+ std::graph::basic_adjacency_list Graph =
189
189
std::vector<std::vector<decltype (std::tuple_cat(std::make_tuple(size_t {}), props(*(begin(E{})))))>>>
190
190
auto make_property_graph (const V& vertices, const E& edges, bool directed = true , size_t idx = 0 ) {
191
191
@@ -226,7 +226,7 @@ auto data_to_graph_edge_list(const V& left_vertices, const V& right_vertices, co
226
226
template <std::ranges::random_access_range V1,
227
227
std::ranges::random_access_range V2,
228
228
std::ranges::random_access_range E,
229
- std::graph::adjacency_list Graph =
229
+ std::graph::basic_adjacency_list Graph =
230
230
std::vector<std::vector<decltype (std::tuple_cat(std::make_tuple(size_t {}), props(*(begin(E{})))))>>>
231
231
auto make_plain_bipartite_graph (const V1& left_vertices, const V2& right_vertices, const E& edges, size_t idx = 0 ) {
232
232
@@ -273,7 +273,7 @@ auto make_bipartite_graph(const V& left_vertices, const V& right_vertices, const
273
273
274
274
template <std::ranges::random_access_range V,
275
275
std::ranges::random_access_range E,
276
- std::graph::adjacency_list Graph =
276
+ std::graph::basic_adjacency_list Graph =
277
277
std::vector<std::vector<decltype (std::tuple_cat(std::make_tuple(size_t {}), props(*(begin(E{})))))>>>
278
278
auto make_bipartite_graphs (const V& left_vertices, const V& right_vertices, const E& edges) {
279
279
0 commit comments