Python-EasyGraph 1.5.3__tar.gz → 1.6.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/CMakeLists.txt +3 -7
- {python_easygraph-1.5.3/Python_EasyGraph.egg-info → python_easygraph-1.6.1}/PKG-INFO +11 -3
- {python_easygraph-1.5.3 → python_easygraph-1.6.1/Python_EasyGraph.egg-info}/PKG-INFO +11 -3
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/Python_EasyGraph.egg-info/SOURCES.txt +5 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/Python_EasyGraph.egg-info/requires.txt +6 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/README.md +4 -2
- python_easygraph-1.6.1/cpp_easygraph/CMakeLists.txt +83 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/cpp_easygraph.cpp +8 -1
- python_easygraph-1.6.1/cpp_easygraph/functions/centrality/betweenness.cpp +467 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/centrality/centrality.h +12 -0
- python_easygraph-1.6.1/cpp_easygraph/functions/centrality/closeness.cpp +353 -0
- python_easygraph-1.6.1/cpp_easygraph/functions/centrality/degree.cpp +96 -0
- python_easygraph-1.6.1/cpp_easygraph/functions/centrality/eigenvector.cpp +198 -0
- python_easygraph-1.6.1/cpp_easygraph/functions/centrality/katz_centrality.cpp +194 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/pagerank/__init__.h +1 -1
- python_easygraph-1.6.1/cpp_easygraph/functions/pagerank/pagerank.cpp +119 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/pagerank/pagerank.h +1 -1
- python_easygraph-1.6.1/cpp_easygraph/functions/path/average_shortest_path_length.cpp +148 -0
- python_easygraph-1.6.1/cpp_easygraph/functions/path/diameter.cpp +207 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/path/mst.cpp +146 -1
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/path/mst.h +1 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/path/path.cpp +77 -40
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/path/path.h +3 -1
- python_easygraph-1.6.1/cpp_easygraph/functions/structural_holes/evaluation.cpp +827 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/__init__.py +2 -1
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/degree.py +3 -0
- python_easygraph-1.6.1/easygraph/functions/centrality/eigenvector.py +154 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/pagerank.py +7 -4
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/average_shortest_path_length.py +2 -1
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/diameter.py +2 -1
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/mst.py +1 -1
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/setup.py +9 -1
- python_easygraph-1.5.3/cpp_easygraph/CMakeLists.txt +0 -44
- python_easygraph-1.5.3/cpp_easygraph/functions/centrality/betweenness.cpp +0 -275
- python_easygraph-1.5.3/cpp_easygraph/functions/centrality/closeness.cpp +0 -123
- python_easygraph-1.5.3/cpp_easygraph/functions/centrality/katz_centrality.cpp +0 -120
- python_easygraph-1.5.3/cpp_easygraph/functions/pagerank/pagerank.cpp +0 -87
- python_easygraph-1.5.3/cpp_easygraph/functions/structural_holes/evaluation.cpp +0 -805
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/LICENSE +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/MANIFEST.in +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/Python_EasyGraph.egg-info/dependency_links.txt +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/Python_EasyGraph.egg-info/top_level.txt +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/README.rst +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/classes/__init__.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/classes/coo_graph.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/classes/csr_graph.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/classes/directed_graph.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/classes/directed_graph.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/classes/graph.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/classes/graph.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/classes/linkgraph.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/classes/operation.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/classes/operation.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/classes/segment_tree.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/common/common.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/common/common.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/common/utils.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/common/utils.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/__init__.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/basic/__init__.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/basic/avg_degree.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/basic/avg_degree.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/basic/cluster.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/basic/cluster.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/centrality/__init__.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/components/__init__.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/components/biconnected.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/components/biconnected.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/components/connected.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/components/connected.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/components/strongly_connected.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/components/strongly_connected.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/cores/__init__.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/cores/k_cores.cpp +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/cores/k_cores.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/path/__init__.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/structural_holes/__init__.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/cpp_easygraph/functions/structural_holes/evaluation.h +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/_global.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/base.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/directed_graph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/directed_multigraph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/graph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/graphviews.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/hypergraph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/multigraph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/operation.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/test_base_graph_class.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/tests/test_base.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/tests/test_directed_graph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/tests/test_graph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/tests/test_graphV2.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/tests/test_hypergraph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/tests/test_multidigraph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/tests/test_multigraph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/classes/tests/test_operation.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/convert.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datapipe/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datapipe/common.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datapipe/loader.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datapipe/normalize.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/amazon_photo.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/arxiv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/citation_graph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/coauthor.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/dynamic/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/dynamic/email_enron.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/dynamic/email_eu.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/dynamic/hospital_lyon.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/dynamic/load_dataset.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/facebook_ego.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/flickr.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/get_sample_graph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/github.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/gnn_benchmark.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/graph_dataset_base.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/House_Committees.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/Yelp.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/_global.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/cat_edge_Cooking.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/coauthorship.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/cocitation.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/contact_primary_school.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/cooking_200.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/hypergraph_dataset_base.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/loadDeepSetDatasets.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/mathoverflow_answers.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/senate_committees.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/trivago_clicks.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/hypergraph/walmart_trips.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/karate.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/ppi.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/reddit.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/roadnet.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/twitter_ego.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/utils.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/web_google.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/datasets/wiki_topcats.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/exception.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/experiments/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/experiments/base.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/experiments/hypergraphs/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/experiments/hypergraphs/hypergraph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/experiments/vertex_classification.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/basic/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/basic/avg_degree.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/basic/cluster.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/basic/localassort.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/basic/predecessor_path_based.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/basic/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/basic/tests/test_avg_degree.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/basic/tests/test_cluster.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/basic/tests/test_localassort.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/basic/tests/test_predecessor.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/betweenness.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/closeness.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/ego_betweenness.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/flowbetweenness.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/katz_centrality.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/laplacian.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/tests/test_betweenness.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/tests/test_closeness.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/tests/test_degree.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/tests/test_egobetweenness.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/tests/test_flowbetweenness.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/tests/test_laplacian.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/centrality/tests/test_pagerank.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/LPA.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/ego_graph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/localsearch.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/louvain.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/modularity.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/modularity_max_detection.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/motif.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/tests/test_LPA.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/tests/test_LS.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/tests/test_ego_graph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/tests/test_louvian.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/tests/test_modularity.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/tests/test_modularity_max_detection.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/community/tests/test_motif.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/components/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/components/biconnected.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/components/connected.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/components/strongly_connected.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/components/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/components/tests/test_biconnected.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/components/tests/test_connected.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/components/tests/test_strongly_connected.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/components/tests/test_weakly_connected.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/components/weakly_connected.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/core/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/core/k_core.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/core/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/core/tests/test_k_core.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/defaults.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/drawing.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/geometry.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/layout.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/plot.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/positioning.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/simulator.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/tests/test_drawing.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/tests/test_geometry.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/tests/test_plot.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/tests/test_positioning.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/drawing/utils.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/NOBE.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/deepwalk.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/line.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/net_emb_example_citeseer.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/node2vec.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/sdne.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/tests/test_deepwalk.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/tests/test_line.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/tests/test_nobe.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/tests/test_node2vec.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_embedding/tests/test_sdne.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_generator/RandomNetwork.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_generator/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_generator/classic.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_generator/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_generator/tests/test_Random_Network.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/graph_generator/tests/test_classic.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/assortativity.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/centrality/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/centrality/cycle_ratio.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/centrality/degree.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/centrality/hypercoreness.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/centrality/s_centrality.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/centrality/vector_centrality.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/hypergraph_clustering.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/hypergraph_operation.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/null_model/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/null_model/hypergraph_classic.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/null_model/lattice.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/null_model/random.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/null_model/simple.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/null_model/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/null_model/tests/test_classic.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/null_model/tests/test_lattice.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/null_model/tests/test_simple.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/null_model/uniform.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/tests/test_assortativity.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/tests/test_centrality.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/tests/test_hypergraph_clustering.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/hypergraph/tests/test_hypergraph_operation.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/isolate.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/bridges.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/path.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/tests/test_average_shortest_path_length.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/tests/test_bridges.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/tests/test_diameter.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/tests/test_mst.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/path/tests/test_path.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/AP_Greedy.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/HAM.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/HIS.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/ICC.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/MaxD.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/NOBE.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/SHII_metric.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/evaluation.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/maxBlock.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/metrics.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/structural_holes/weakTie.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/functions/tests/test_isolate.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/ml_metrics/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/ml_metrics/base.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/ml_metrics/classification.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/ml_metrics/hypergraphs/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/ml_metrics/hypergraphs/hypergraph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/model/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/model/hypergraphs/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/model/hypergraphs/dhcf.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/model/hypergraphs/dhne.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/model/hypergraphs/hgnn.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/model/hypergraphs/hgnnp.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/model/hypergraphs/hnhn.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/model/hypergraphs/hwnn.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/model/hypergraphs/hypergcn.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/model/hypergraphs/setgnn.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/model/hypergraphs/unignn.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/common.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/hypergraphs/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/hypergraphs/dhcf_conv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/hypergraphs/halfnlh_conv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/hypergraphs/hgnn_conv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/hypergraphs/hgnnp_conv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/hypergraphs/hnhn_conv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/hypergraphs/hwnn_conv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/hypergraphs/hypergcn_conv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/hypergraphs/unignn_conv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/convs/pma.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/loss.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/regularization.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/tests/test_gatconv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/tests/test_gcnconv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/tests/test_graphsageconv.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/nn/tests/test_regularization.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/edgelist.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/gexf.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/gml.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/graphml.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/graphviz.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/json_graph/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/json_graph/node_link.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/pajek.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/pickle.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/tests/test_edgelist.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/tests/test_gexf.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/tests/test_gml.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/tests/test_graphml.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/tests/test_graphviz.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/tests/test_pajek.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/tests/test_pickle.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/tests/test_ucinet.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/readwrite/ucinet.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/tests/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/tests/script_test_cpp_easygraph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/tests/teddy_test_cpp_easygraph_sanity_check.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/tests/test_convert.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/tests/test_cpp_easygraph.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/tests/test_hif.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/HIF.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/__init__.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/alias.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/convert_class.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/convert_to_matrix.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/decorators.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/download.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/exception.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/index_of_node.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/logging.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/mapped_queue.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/misc.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/relabel.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/sparse.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/easygraph/utils/type_change.py +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/pyproject.toml +0 -0
- {python_easygraph-1.5.3 → python_easygraph-1.6.1}/setup.cfg +0 -0
|
@@ -2,22 +2,18 @@ cmake_minimum_required(VERSION 3.23)
|
|
|
2
2
|
|
|
3
3
|
project(easygraph)
|
|
4
4
|
|
|
5
|
+
option(EASYGRAPH_ENABLE_OPENMP "Enable OpenMP acceleration (auto-detect)" ON)
|
|
6
|
+
|
|
5
7
|
option(EASYGRAPH_ENABLE_GPU "EASYGRAPH_ENABLE_GPU" OFF)
|
|
6
8
|
|
|
7
9
|
add_subdirectory(cpp_easygraph)
|
|
8
10
|
|
|
9
11
|
if (EASYGRAPH_ENABLE_GPU)
|
|
10
|
-
|
|
11
12
|
message("easygraph gpu module is enabled")
|
|
12
|
-
|
|
13
13
|
add_subdirectory(gpu_easygraph)
|
|
14
|
-
|
|
15
14
|
target_include_directories(cpp_easygraph
|
|
16
15
|
PRIVATE gpu_easygraph
|
|
17
16
|
)
|
|
18
|
-
|
|
19
17
|
else()
|
|
20
|
-
|
|
21
18
|
message("easygraph gpu module is disabled")
|
|
22
|
-
|
|
23
|
-
endif()
|
|
19
|
+
endif()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Python-EasyGraph
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.1
|
|
4
4
|
Summary: Easy Graph
|
|
5
5
|
Home-page: https://github.com/easy-graph/Easy-Graph
|
|
6
6
|
Author: Fudan DataNET Group
|
|
@@ -36,6 +36,11 @@ Requires-Dist: pandas>=1.1.0; python_version >= "3.8" and python_version < "3.14
|
|
|
36
36
|
Requires-Dist: matplotlib
|
|
37
37
|
Requires-Dist: requests
|
|
38
38
|
Requires-Dist: optuna
|
|
39
|
+
Requires-Dist: fastjsonschema
|
|
40
|
+
Provides-Extra: torch
|
|
41
|
+
Requires-Dist: torch>=2.0; extra == "torch"
|
|
42
|
+
Requires-Dist: fastjsonschema; extra == "torch"
|
|
43
|
+
Requires-Dist: torch_geometric>=2.3; extra == "torch"
|
|
39
44
|
Dynamic: author
|
|
40
45
|
Dynamic: author-email
|
|
41
46
|
Dynamic: classifier
|
|
@@ -43,6 +48,7 @@ Dynamic: description
|
|
|
43
48
|
Dynamic: description-content-type
|
|
44
49
|
Dynamic: home-page
|
|
45
50
|
Dynamic: license-file
|
|
51
|
+
Dynamic: provides-extra
|
|
46
52
|
Dynamic: requires-dist
|
|
47
53
|
Dynamic: requires-python
|
|
48
54
|
Dynamic: summary
|
|
@@ -50,7 +56,7 @@ Dynamic: summary
|
|
|
50
56
|
EasyGraph
|
|
51
57
|
==================
|
|
52
58
|
|
|
53
|
-
Copyright (C) <2020-
|
|
59
|
+
Copyright (C) <2020-2026> by [DataNET Group, Fudan University](https://fudan-datanet.mysxl.cn/)
|
|
54
60
|
|
|
55
61
|
___________________________________________________________________________
|
|
56
62
|
|
|
@@ -112,9 +118,11 @@ It bridges the gap between EasyGraph and higher-order relationships. EasyHypergr
|
|
|
112
118
|
- [11-04-2023] [EasyGraph:多功能、跨平台、高效率的跨学科网络分析库 (in Chinese)](https://swarma.org/?p=46252)
|
|
113
119
|
|
|
114
120
|
## 🚀 Releases & Milestones
|
|
121
|
+
- [02-01-2026] EasyGraph **v1.6** released (OpenMP-powered functions for large network analysis)
|
|
122
|
+
- **[01-16-2026] 🎉 1M Downloads! Thanks to our amazing community!**
|
|
123
|
+
- [01-01-2026] EasyGraph **v1.5.3** released ([The Hypergraph Interchange Format (HIF) standard](https://github.com/HIF-org/HIF-standard))
|
|
115
124
|
- [11-23-2025] EasyGraph **v1.5.2** released (LS algorithm for effective community detection)
|
|
116
125
|
- [10-11-2025] EasyGraph **v1.5.1** released (Python 3.14 supported)
|
|
117
|
-
- **[09-29-2025] 🎉 900K+ Downloads! Thanks to our amazing community!**
|
|
118
126
|
- [07-27-2025] EasyGraph **v1.5** released (This version integrates the HWNN model and supports 11 representative network datasets)
|
|
119
127
|
- **[06-29-2025] 🎉 800K+ Downloads!**
|
|
120
128
|
- [11-22-2024] EasyGraph **v1.4.1** released (Python 3.13 supported)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Python-EasyGraph
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.1
|
|
4
4
|
Summary: Easy Graph
|
|
5
5
|
Home-page: https://github.com/easy-graph/Easy-Graph
|
|
6
6
|
Author: Fudan DataNET Group
|
|
@@ -36,6 +36,11 @@ Requires-Dist: pandas>=1.1.0; python_version >= "3.8" and python_version < "3.14
|
|
|
36
36
|
Requires-Dist: matplotlib
|
|
37
37
|
Requires-Dist: requests
|
|
38
38
|
Requires-Dist: optuna
|
|
39
|
+
Requires-Dist: fastjsonschema
|
|
40
|
+
Provides-Extra: torch
|
|
41
|
+
Requires-Dist: torch>=2.0; extra == "torch"
|
|
42
|
+
Requires-Dist: fastjsonschema; extra == "torch"
|
|
43
|
+
Requires-Dist: torch_geometric>=2.3; extra == "torch"
|
|
39
44
|
Dynamic: author
|
|
40
45
|
Dynamic: author-email
|
|
41
46
|
Dynamic: classifier
|
|
@@ -43,6 +48,7 @@ Dynamic: description
|
|
|
43
48
|
Dynamic: description-content-type
|
|
44
49
|
Dynamic: home-page
|
|
45
50
|
Dynamic: license-file
|
|
51
|
+
Dynamic: provides-extra
|
|
46
52
|
Dynamic: requires-dist
|
|
47
53
|
Dynamic: requires-python
|
|
48
54
|
Dynamic: summary
|
|
@@ -50,7 +56,7 @@ Dynamic: summary
|
|
|
50
56
|
EasyGraph
|
|
51
57
|
==================
|
|
52
58
|
|
|
53
|
-
Copyright (C) <2020-
|
|
59
|
+
Copyright (C) <2020-2026> by [DataNET Group, Fudan University](https://fudan-datanet.mysxl.cn/)
|
|
54
60
|
|
|
55
61
|
___________________________________________________________________________
|
|
56
62
|
|
|
@@ -112,9 +118,11 @@ It bridges the gap between EasyGraph and higher-order relationships. EasyHypergr
|
|
|
112
118
|
- [11-04-2023] [EasyGraph:多功能、跨平台、高效率的跨学科网络分析库 (in Chinese)](https://swarma.org/?p=46252)
|
|
113
119
|
|
|
114
120
|
## 🚀 Releases & Milestones
|
|
121
|
+
- [02-01-2026] EasyGraph **v1.6** released (OpenMP-powered functions for large network analysis)
|
|
122
|
+
- **[01-16-2026] 🎉 1M Downloads! Thanks to our amazing community!**
|
|
123
|
+
- [01-01-2026] EasyGraph **v1.5.3** released ([The Hypergraph Interchange Format (HIF) standard](https://github.com/HIF-org/HIF-standard))
|
|
115
124
|
- [11-23-2025] EasyGraph **v1.5.2** released (LS algorithm for effective community detection)
|
|
116
125
|
- [10-11-2025] EasyGraph **v1.5.1** released (Python 3.14 supported)
|
|
117
|
-
- **[09-29-2025] 🎉 900K+ Downloads! Thanks to our amazing community!**
|
|
118
126
|
- [07-27-2025] EasyGraph **v1.5** released (This version integrates the HWNN model and supports 11 representative network datasets)
|
|
119
127
|
- **[06-29-2025] 🎉 800K+ Downloads!**
|
|
120
128
|
- [11-22-2024] EasyGraph **v1.4.1** released (Python 3.13 supported)
|
|
@@ -37,6 +37,8 @@ cpp_easygraph/functions/centrality/__init__.h
|
|
|
37
37
|
cpp_easygraph/functions/centrality/betweenness.cpp
|
|
38
38
|
cpp_easygraph/functions/centrality/centrality.h
|
|
39
39
|
cpp_easygraph/functions/centrality/closeness.cpp
|
|
40
|
+
cpp_easygraph/functions/centrality/degree.cpp
|
|
41
|
+
cpp_easygraph/functions/centrality/eigenvector.cpp
|
|
40
42
|
cpp_easygraph/functions/centrality/katz_centrality.cpp
|
|
41
43
|
cpp_easygraph/functions/components/__init__.h
|
|
42
44
|
cpp_easygraph/functions/components/biconnected.cpp
|
|
@@ -52,6 +54,8 @@ cpp_easygraph/functions/pagerank/__init__.h
|
|
|
52
54
|
cpp_easygraph/functions/pagerank/pagerank.cpp
|
|
53
55
|
cpp_easygraph/functions/pagerank/pagerank.h
|
|
54
56
|
cpp_easygraph/functions/path/__init__.h
|
|
57
|
+
cpp_easygraph/functions/path/average_shortest_path_length.cpp
|
|
58
|
+
cpp_easygraph/functions/path/diameter.cpp
|
|
55
59
|
cpp_easygraph/functions/path/mst.cpp
|
|
56
60
|
cpp_easygraph/functions/path/mst.h
|
|
57
61
|
cpp_easygraph/functions/path/path.cpp
|
|
@@ -147,6 +151,7 @@ easygraph/functions/centrality/betweenness.py
|
|
|
147
151
|
easygraph/functions/centrality/closeness.py
|
|
148
152
|
easygraph/functions/centrality/degree.py
|
|
149
153
|
easygraph/functions/centrality/ego_betweenness.py
|
|
154
|
+
easygraph/functions/centrality/eigenvector.py
|
|
150
155
|
easygraph/functions/centrality/flowbetweenness.py
|
|
151
156
|
easygraph/functions/centrality/katz_centrality.py
|
|
152
157
|
easygraph/functions/centrality/laplacian.py
|
|
@@ -7,6 +7,7 @@ nose>=0.10.1
|
|
|
7
7
|
matplotlib
|
|
8
8
|
requests
|
|
9
9
|
optuna
|
|
10
|
+
fastjsonschema
|
|
10
11
|
|
|
11
12
|
[:python_version < "3.14"]
|
|
12
13
|
numpy>=1.23
|
|
@@ -29,3 +30,8 @@ statsmodels>=0.12.0
|
|
|
29
30
|
scikit-learn>=0.24.0
|
|
30
31
|
scipy>=1.8.0
|
|
31
32
|
pandas>=1.1.0
|
|
33
|
+
|
|
34
|
+
[torch]
|
|
35
|
+
torch>=2.0
|
|
36
|
+
fastjsonschema
|
|
37
|
+
torch_geometric>=2.3
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
EasyGraph
|
|
2
2
|
==================
|
|
3
3
|
|
|
4
|
-
Copyright (C) <2020-
|
|
4
|
+
Copyright (C) <2020-2026> by [DataNET Group, Fudan University](https://fudan-datanet.mysxl.cn/)
|
|
5
5
|
|
|
6
6
|
___________________________________________________________________________
|
|
7
7
|
|
|
@@ -63,9 +63,11 @@ It bridges the gap between EasyGraph and higher-order relationships. EasyHypergr
|
|
|
63
63
|
- [11-04-2023] [EasyGraph:多功能、跨平台、高效率的跨学科网络分析库 (in Chinese)](https://swarma.org/?p=46252)
|
|
64
64
|
|
|
65
65
|
## 🚀 Releases & Milestones
|
|
66
|
+
- [02-01-2026] EasyGraph **v1.6** released (OpenMP-powered functions for large network analysis)
|
|
67
|
+
- **[01-16-2026] 🎉 1M Downloads! Thanks to our amazing community!**
|
|
68
|
+
- [01-01-2026] EasyGraph **v1.5.3** released ([The Hypergraph Interchange Format (HIF) standard](https://github.com/HIF-org/HIF-standard))
|
|
66
69
|
- [11-23-2025] EasyGraph **v1.5.2** released (LS algorithm for effective community detection)
|
|
67
70
|
- [10-11-2025] EasyGraph **v1.5.1** released (Python 3.14 supported)
|
|
68
|
-
- **[09-29-2025] 🎉 900K+ Downloads! Thanks to our amazing community!**
|
|
69
71
|
- [07-27-2025] EasyGraph **v1.5** released (This version integrates the HWNN model and supports 11 representative network datasets)
|
|
70
72
|
- **[06-29-2025] 🎉 800K+ Downloads!**
|
|
71
73
|
- [11-22-2024] EasyGraph **v1.4.1** released (Python 3.13 supported)
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
cmake_minimum_required(VERSION 3.23)
|
|
2
|
+
project(cpp_easygraph)
|
|
3
|
+
set(CMAKE_CXX_STANDARD 11)
|
|
4
|
+
|
|
5
|
+
file(GLOB SOURCES
|
|
6
|
+
classes/*.cpp
|
|
7
|
+
common/*.cpp
|
|
8
|
+
functions/*/*.cpp
|
|
9
|
+
cpp_easygraph.cpp
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
add_subdirectory(pybind11)
|
|
13
|
+
|
|
14
|
+
option(EASYGRAPH_ENABLE_OPENMP "Enable OpenMP acceleration (auto-detect)" ON)
|
|
15
|
+
option(EASYGRAPH_ENABLE_GPU "EASYGRAPH_ENABLE_GPU" OFF)
|
|
16
|
+
|
|
17
|
+
if (EASYGRAPH_ENABLE_GPU)
|
|
18
|
+
|
|
19
|
+
pybind11_add_module(cpp_easygraph
|
|
20
|
+
${SOURCES}
|
|
21
|
+
$<TARGET_OBJECTS:gpu_easygraph>
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
set_property(TARGET cpp_easygraph PROPERTY CUDA_ARCHITECTURES all)
|
|
25
|
+
|
|
26
|
+
target_compile_definitions(cpp_easygraph
|
|
27
|
+
PRIVATE EASYGRAPH_ENABLE_GPU
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
target_link_libraries(cpp_easygraph
|
|
31
|
+
PRIVATE cudart_static
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
else()
|
|
35
|
+
pybind11_add_module(cpp_easygraph
|
|
36
|
+
${SOURCES}
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
endif()
|
|
40
|
+
|
|
41
|
+
if (EASYGRAPH_ENABLE_OPENMP)
|
|
42
|
+
if (APPLE AND CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
43
|
+
find_path(EG_LIBOMP_INCLUDE_DIR
|
|
44
|
+
NAMES omp.h
|
|
45
|
+
PATHS
|
|
46
|
+
/opt/homebrew/opt/libomp/include
|
|
47
|
+
/usr/local/opt/libomp/include
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
find_library(EG_LIBOMP_LIBRARY
|
|
51
|
+
NAMES omp libomp
|
|
52
|
+
PATHS
|
|
53
|
+
/opt/homebrew/opt/libomp/lib
|
|
54
|
+
/usr/local/opt/libomp/lib
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
if (EG_LIBOMP_INCLUDE_DIR AND EG_LIBOMP_LIBRARY)
|
|
58
|
+
message(STATUS "libomp found: ${EG_LIBOMP_LIBRARY}")
|
|
59
|
+
|
|
60
|
+
set(OpenMP_C_FLAGS "-Xpreprocessor -fopenmp" CACHE STRING "" FORCE)
|
|
61
|
+
set(OpenMP_CXX_FLAGS "-Xpreprocessor -fopenmp" CACHE STRING "" FORCE)
|
|
62
|
+
|
|
63
|
+
set(OpenMP_CXX_INCLUDE_DIR "${EG_LIBOMP_INCLUDE_DIR}" CACHE PATH "" FORCE)
|
|
64
|
+
set(OpenMP_omp_LIBRARY "${EG_LIBOMP_LIBRARY}" CACHE FILEPATH "" FORCE)
|
|
65
|
+
else()
|
|
66
|
+
message(STATUS
|
|
67
|
+
"libomp not found on macOS. OpenMP will be disabled.\n"
|
|
68
|
+
"To enable OpenMP, run: brew install libomp"
|
|
69
|
+
)
|
|
70
|
+
endif()
|
|
71
|
+
endif()
|
|
72
|
+
|
|
73
|
+
find_package(OpenMP QUIET)
|
|
74
|
+
endif()
|
|
75
|
+
|
|
76
|
+
if (OpenMP_CXX_FOUND)
|
|
77
|
+
message(STATUS "OpenMP found, enabling parallel acceleration.")
|
|
78
|
+
target_link_libraries(cpp_easygraph PRIVATE OpenMP::OpenMP_CXX)
|
|
79
|
+
target_compile_definitions(cpp_easygraph PRIVATE EASYGRAPH_USE_OPENMP=1)
|
|
80
|
+
else()
|
|
81
|
+
message(STATUS "OpenMP not found, building in single-thread mode.")
|
|
82
|
+
target_compile_definitions(cpp_easygraph PRIVATE EASYGRAPH_USE_OPENMP=0)
|
|
83
|
+
endif()
|
|
@@ -75,16 +75,20 @@ PYBIND11_MODULE(cpp_easygraph, m) {
|
|
|
75
75
|
.def_property("pred", &DiGraph::get_pred,nullptr)
|
|
76
76
|
.def("generate_linkgraph", &DiGraph_generate_linkgraph,py::arg("weight") = "weight");
|
|
77
77
|
|
|
78
|
+
m.def("cpp_degree_centrality", °ree_centrality, py::arg("G"));
|
|
79
|
+
m.def("cpp_in_degree_centrality", &in_degree_centrality, py::arg("G"));
|
|
80
|
+
m.def("cpp_out_degree_centrality", &out_degree_centrality, py::arg("G"));
|
|
78
81
|
m.def("cpp_closeness_centrality", &closeness_centrality, py::arg("G"), py::arg("weight") = "weight", py::arg("cutoff") = py::none(), py::arg("sources") = py::none());
|
|
79
82
|
m.def("cpp_betweenness_centrality", &betweenness_centrality, py::arg("G"), py::arg("weight") = "weight", py::arg("cutoff") = py::none(),py::arg("sources") = py::none(), py::arg("normalized") = py::bool_(true), py::arg("endpoints") = py::bool_(false));
|
|
80
83
|
m.def("cpp_katz_centrality", &cpp_katz_centrality, py::arg("G"), py::arg("alpha") = 0.1, py::arg("beta") = 1.0, py::arg("max_iter") = 1000, py::arg("tol") = 1e-6, py::arg("normalized") = true);
|
|
84
|
+
m.def("cpp_eigenvector_centrality", &cpp_eigenvector_centrality, py::arg("G"), py::arg("max_iter") = 100, py::arg("tol") = 1.0e-6, py::arg("nstart") = py::none(), py::arg("weight") = "weight");
|
|
81
85
|
m.def("cpp_k_core", &core_decomposition, py::arg("G"));
|
|
82
86
|
m.def("cpp_density", &density, py::arg("G"));
|
|
83
87
|
m.def("cpp_constraint", &constraint, py::arg("G"), py::arg("nodes") = py::none(), py::arg("weight") = py::none(), py::arg("n_workers") = py::none());
|
|
84
88
|
m.def("cpp_effective_size", &effective_size, py::arg("G"), py::arg("nodes") = py::none(), py::arg("weight") = py::none(), py::arg("n_workers") = py::none());
|
|
85
89
|
m.def("cpp_efficiency", &efficiency, py::arg("G"), py::arg("nodes") = py::none(), py::arg("weight") = py::none(), py::arg("n_workers") = py::none());
|
|
86
90
|
m.def("cpp_hierarchy", &hierarchy, py::arg("G"), py::arg("nodes") = py::none(), py::arg("weight") = py::none(), py::arg("n_workers") = py::none());
|
|
87
|
-
m.def("cpp_pagerank", &_pagerank, py::arg("G"), py::arg("alpha") = 0.85, py::arg("max_iterator") = 500, py::arg("threshold") = 1e-6);
|
|
91
|
+
m.def("cpp_pagerank", &_pagerank, py::arg("G"), py::arg("alpha") = 0.85, py::arg("max_iterator") = 500, py::arg("threshold") = 1e-6, py::arg("weight") = "weight");
|
|
88
92
|
m.def("cpp_dijkstra_multisource", &_dijkstra_multisource, py::arg("G"), py::arg("sources"), py::arg("weight") = "weight", py::arg("target") = py::none());
|
|
89
93
|
m.def("cpp_spfa", &_spfa, py::arg("G"), py::arg("source"), py::arg("weight") = "weight");
|
|
90
94
|
m.def("cpp_clustering", &clustering, py::arg("G"), py::arg("nodes") = py::none(), py::arg("weight") = py::none());
|
|
@@ -96,6 +100,9 @@ PYBIND11_MODULE(cpp_easygraph, m) {
|
|
|
96
100
|
m.def("cpp_plain_bfs", &plain_bfs, py::arg("G"), py::arg("source"));
|
|
97
101
|
m.def("cpp_kruskal_mst_edges", &kruskal_mst_edges, py::arg("G"), py::arg("minimum") = true, py::arg("weight") = "weight", py::arg("data") = true, py::arg("ignore_nan") = false);
|
|
98
102
|
m.def("cpp_prim_mst_edges", &prim_mst_edges, py::arg("G"), py::arg("minimum") = true, py::arg("weight") = "weight", py::arg("data") = true, py::arg("ignore_nan") = false);
|
|
103
|
+
m.def("cpp_boruvka_mst_edges", &boruvka_mst_edges, py::arg("G"), py::arg("minimum") = true, py::arg("weight") = "weight", py::arg("data") = true, py::arg("ignore_nan") = false);
|
|
104
|
+
m.def("cpp_average_shortest_path_length", &average_shortest_path_length, py::arg("G"), py::arg("weight") = py::none(), py::arg("method") = py::none());
|
|
105
|
+
m.def("cpp_eccentricity", &eccentricity, py::arg("G"), py::arg("v") = py::none(), py::arg("sp") = py::none());
|
|
99
106
|
m.def("cpp_connected_components_undirected", &connected_component_undirected, py::arg("G"));
|
|
100
107
|
m.def("cpp_connected_components_directed", &connected_component_directed, py::arg("G"));
|
|
101
108
|
}
|