@@ -596,6 +596,10 @@ def _load_igraph_c_library():
596596igraph_connect_neighborhood .restype = handle_igraph_error_t
597597igraph_connect_neighborhood .argtypes = [POINTER (igraph_t ), igraph_integer_t , igraph_neimode_t ]
598598
599+ igraph_graph_power = _lib .igraph_graph_power
600+ igraph_graph_power .restype = handle_igraph_error_t
601+ igraph_graph_power .argtypes = [POINTER (igraph_t ), POINTER (igraph_t ), igraph_integer_t , igraph_bool_t ]
602+
599603igraph_linegraph = _lib .igraph_linegraph
600604igraph_linegraph .restype = handle_igraph_error_t
601605igraph_linegraph .argtypes = [POINTER (igraph_t ), POINTER (igraph_t )]
@@ -1588,6 +1592,10 @@ def _load_igraph_c_library():
15881592igraph_community_infomap .restype = handle_igraph_error_t
15891593igraph_community_infomap .argtypes = [POINTER (igraph_t ), POINTER (igraph_vector_t ), POINTER (igraph_vector_t ), igraph_integer_t , POINTER (igraph_vector_int_t ), POINTER (igraph_real_t )]
15901594
1595+ igraph_community_voronoi = _lib .igraph_community_voronoi
1596+ igraph_community_voronoi .restype = handle_igraph_error_t
1597+ igraph_community_voronoi .argtypes = [POINTER (igraph_t ), POINTER (igraph_vector_int_t ), POINTER (igraph_vector_int_t ), POINTER (igraph_real_t ), POINTER (igraph_vector_t ), POINTER (igraph_vector_t ), igraph_neimode_t , igraph_real_t ]
1598+
15911599igraph_graphlets = _lib .igraph_graphlets
15921600igraph_graphlets .restype = handle_igraph_error_t
15931601igraph_graphlets .argtypes = [POINTER (igraph_t ), POINTER (igraph_vector_t ), POINTER (igraph_vector_int_list_t ), POINTER (igraph_vector_t ), igraph_integer_t ]
0 commit comments