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

10 lines
274 B
C++

#pragma once
#include <vector>
#include <memory>
#include "../../common/common.h"
#include "../../classes/graph.h"
#include "../../classes/directed_graph.h"
#include "../../classes/csr_graph.h"
py::object nodes_subgraph_cpp(py::object self, std::vector<node_t>& node_ids);