Skip to content

Commit cf923f2

Browse files
committed
fix parameter binding for random_directed_uniform_hypergraph
1 parent 177422b commit cf923f2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/random_networks.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ struct declare_random_network_models {
7878

7979
m.def(("random_directed_uniform_hypergraph_"+
8080
python_type_str<VertT>()).c_str(),
81-
&reticula::random_uniform_hypergraph<VertT, Gen>,
82-
"size"_a, "edge_in_degree"_a, "edge_out_degree"_a, "edge_prob"_a
81+
&reticula::random_directed_uniform_hypergraph<VertT, Gen>,
82+
"size"_a, "edge_in_degree"_a, "edge_out_degree"_a, "edge_prob"_a,
8383
"random_state"_a,
8484
nb::call_guard<nb::gil_scoped_release>());
8585

0 commit comments

Comments
 (0)