Files
easy-graph--easy-graph/cpp_easygraph/functions/community/greedy_modularity.h
T
2026-07-13 12:36:30 +08:00

12 lines
183 B
C++

#pragma once
#include <pybind11/pybind11.h>
namespace py = pybind11;
py::object cpp_greedy_modularity_communities(
py::object G,
py::object weight = py::str("weight")
);