Skip to content

Commit 048a847

Browse files
committed
resolved comments
1 parent 630d5fb commit 048a847

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

include/hgl/hypergraph.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -458,14 +458,14 @@ class hypergraph final {
458458
}
459459

460460
gl_attr_force_inline hyperedge_type add_hyperedge_with(
461-
std::initializer_list<vertex_type> tail_verticess,
462-
std::initializer_list<vertex_type> head_verticess,
461+
std::initializer_list<vertex_type> tail_vertices,
462+
std::initializer_list<vertex_type> head_vertices,
463463
hyperedge_properties_type properties
464464
)
465465
requires(std::same_as<directional_tag, bf_directed_t> and traits::c_non_empty_properties<hyperedge_properties_type>)
466466
{
467467
return this->add_hyperedge_with(
468-
std::views::all(tail_verticess), std::views::all(head_verticess), std::move(properties)
468+
std::views::all(tail_vertices), std::views::all(head_vertices), std::move(properties)
469469
);
470470
}
471471

0 commit comments

Comments
 (0)