LICENSE
README.rst
pyproject.toml
setup.py
Python_EasyGraph.egg-info/PKG-INFO
Python_EasyGraph.egg-info/SOURCES.txt
Python_EasyGraph.egg-info/dependency_links.txt
Python_EasyGraph.egg-info/requires.txt
Python_EasyGraph.egg-info/top_level.txt
easygraph/__init__.py
easygraph/_global.py
easygraph/convert.py
easygraph/exception.py
easygraph/classes/__init__.py
easygraph/classes/base.py
easygraph/classes/directed_graph.py
easygraph/classes/directed_multigraph.py
easygraph/classes/graph.py
easygraph/classes/graphviews.py
easygraph/classes/hypergraph.py
easygraph/classes/multigraph.py
easygraph/classes/operation.py
easygraph/classes/test_base_graph_class.py
easygraph/classes/tests/__init__.py
easygraph/classes/tests/test_graph.py
easygraph/classes/tests/test_hypergraph.py
easygraph/classes/tests/test_multidigraph.py
easygraph/classes/tests/test_multigraph.py
easygraph/classes/tests/test_operation.py
easygraph/datapipe/__init__.py
easygraph/datapipe/common.py
easygraph/datapipe/loader.py
easygraph/datapipe/normalize.py
easygraph/datasets/__init__.py
easygraph/datasets/citation_graph.py
easygraph/datasets/get_sample_graph.py
easygraph/datasets/gnn_benchmark.py
easygraph/datasets/graph_dataset_base.py
easygraph/datasets/karate.py
easygraph/datasets/ppi.py
easygraph/datasets/utils.py
easygraph/datasets/dynamic/__init__.py
easygraph/datasets/dynamic/email_enron.py
easygraph/datasets/dynamic/email_eu.py
easygraph/datasets/dynamic/hospital_lyon.py
easygraph/datasets/dynamic/load_dataset.py
easygraph/datasets/hypergraph/House_Committees.py
easygraph/datasets/hypergraph/Yelp.py
easygraph/datasets/hypergraph/__init__.py
easygraph/datasets/hypergraph/_global.py
easygraph/datasets/hypergraph/cat_edge_Cooking.py
easygraph/datasets/hypergraph/coauthorship.py
easygraph/datasets/hypergraph/cocitation.py
easygraph/datasets/hypergraph/contact_primary_school.py
easygraph/datasets/hypergraph/cooking_200.py
easygraph/datasets/hypergraph/hypergraph_dataset_base.py
easygraph/datasets/hypergraph/loadDeepSetDatasets.py
easygraph/datasets/hypergraph/mathoverflow_answers.py
easygraph/datasets/hypergraph/senate_committees.py
easygraph/datasets/hypergraph/trivago_clicks.py
easygraph/datasets/hypergraph/walmart_trips.py
easygraph/experiments/__init__.py
easygraph/experiments/base.py
easygraph/experiments/vertex_classification.py
easygraph/experiments/hypergraphs/__init__.py
easygraph/experiments/hypergraphs/hypergraph.py
easygraph/functions/__init__.py
easygraph/functions/isolate.py
easygraph/functions/basic/__init__.py
easygraph/functions/basic/avg_degree.py
easygraph/functions/basic/cluster.py
easygraph/functions/basic/localassort.py
easygraph/functions/basic/predecessor_path_based.py
easygraph/functions/basic/tests/__init__.py
easygraph/functions/basic/tests/test_avg_degree.py
easygraph/functions/basic/tests/test_cluster.py
easygraph/functions/basic/tests/test_localassort.py
easygraph/functions/basic/tests/test_predecessor.py
easygraph/functions/centrality/__init__.py
easygraph/functions/centrality/betweenness.py
easygraph/functions/centrality/closeness.py
easygraph/functions/centrality/degree.py
easygraph/functions/centrality/ego_betweenness.py
easygraph/functions/centrality/flowbetweenness.py
easygraph/functions/centrality/laplacian.py
easygraph/functions/centrality/pagerank.py
easygraph/functions/centrality/tests/__init__.py
easygraph/functions/centrality/tests/test_betweenness.py
easygraph/functions/centrality/tests/test_closeness.py
easygraph/functions/centrality/tests/test_degree.py
easygraph/functions/centrality/tests/test_egobetweenness.py
easygraph/functions/centrality/tests/test_flowbetweenness.py
easygraph/functions/centrality/tests/test_laplacian.py
easygraph/functions/centrality/tests/test_pagerank.py
easygraph/functions/community/LPA.py
easygraph/functions/community/__init__.py
easygraph/functions/community/ego_graph.py
easygraph/functions/community/louvain.py
easygraph/functions/community/modularity.py
easygraph/functions/community/modularity_max_detection.py
easygraph/functions/community/motif.py
easygraph/functions/community/tests/__init__.py
easygraph/functions/community/tests/test_motif.py
easygraph/functions/components/__init__.py
easygraph/functions/components/biconnected.py
easygraph/functions/components/connected.py
easygraph/functions/components/strongly_connected.py
easygraph/functions/components/weakly_connected.py
easygraph/functions/components/tests/__init__.py
easygraph/functions/components/tests/test_biconnected.py
easygraph/functions/components/tests/test_connected.py
easygraph/functions/components/tests/test_strongly_connected.py
easygraph/functions/components/tests/test_weakly_connected.py
easygraph/functions/core/__init__.py
easygraph/functions/core/k_core.py
easygraph/functions/core/tests/__init__.py
easygraph/functions/core/tests/test_k_core.py
easygraph/functions/drawing/__init__.py
easygraph/functions/drawing/defaults.py
easygraph/functions/drawing/drawing.py
easygraph/functions/drawing/geometry.py
easygraph/functions/drawing/layout.py
easygraph/functions/drawing/plot.py
easygraph/functions/drawing/positioning.py
easygraph/functions/drawing/simulator.py
easygraph/functions/drawing/utils.py
easygraph/functions/drawing/tests/__init__.py
easygraph/functions/drawing/tests/test_drawing.py
easygraph/functions/drawing/tests/test_plot.py
easygraph/functions/drawing/tests/test_positioning.py
easygraph/functions/graph_embedding/NOBE.py
easygraph/functions/graph_embedding/__init__.py
easygraph/functions/graph_embedding/deepwalk.py
easygraph/functions/graph_embedding/line.py
easygraph/functions/graph_embedding/net_emb_example_citeseer.py
easygraph/functions/graph_embedding/node2vec.py
easygraph/functions/graph_embedding/sdne.py
easygraph/functions/graph_embedding/tests/__init__.py
easygraph/functions/graph_embedding/tests/test_deepwalk.py
easygraph/functions/graph_embedding/tests/test_line.py
easygraph/functions/graph_embedding/tests/test_nobe.py
easygraph/functions/graph_embedding/tests/test_node2vec.py
easygraph/functions/graph_embedding/tests/test_sdne.py
easygraph/functions/graph_generator/RandomNetwork.py
easygraph/functions/graph_generator/__init__.py
easygraph/functions/graph_generator/classic.py
easygraph/functions/graph_generator/tests/__init__.py
easygraph/functions/graph_generator/tests/test_Random_Network.py
easygraph/functions/graph_generator/tests/test_classic.py
easygraph/functions/hypergraph/__init__.py
easygraph/functions/hypergraph/assortativity.py
easygraph/functions/hypergraph/hypergraph_clustering.py
easygraph/functions/hypergraph/hypergraph_operation.py
easygraph/functions/hypergraph/centrality/__init__.py
easygraph/functions/hypergraph/centrality/cycle_ratio.py
easygraph/functions/hypergraph/centrality/degree.py
easygraph/functions/hypergraph/centrality/hypercoreness.py
easygraph/functions/hypergraph/centrality/s_centrality.py
easygraph/functions/hypergraph/centrality/vector_centrality.py
easygraph/functions/hypergraph/null_model/__init__.py
easygraph/functions/hypergraph/null_model/hypergraph_classic.py
easygraph/functions/hypergraph/null_model/lattice.py
easygraph/functions/hypergraph/null_model/random.py
easygraph/functions/hypergraph/null_model/simple.py
easygraph/functions/hypergraph/null_model/uniform.py
easygraph/functions/hypergraph/null_model/tests/__init__.py
easygraph/functions/hypergraph/null_model/tests/test_classic.py
easygraph/functions/hypergraph/tests/__init__.py
easygraph/functions/hypergraph/tests/test_assortativity.py
easygraph/functions/hypergraph/tests/test_centrality.py
easygraph/functions/hypergraph/tests/test_hypergraph_clustering.py
easygraph/functions/hypergraph/tests/test_hypergraph_operation.py
easygraph/functions/path/__init__.py
easygraph/functions/path/average_shortest_path_length.py
easygraph/functions/path/bridges.py
easygraph/functions/path/diameter.py
easygraph/functions/path/mst.py
easygraph/functions/path/path.py
easygraph/functions/path/tests/__init__.py
easygraph/functions/path/tests/test_average_shortest_path_length.py
easygraph/functions/path/tests/test_bridges.py
easygraph/functions/path/tests/test_diameter.py
easygraph/functions/path/tests/test_mst.py
easygraph/functions/path/tests/test_path.py
easygraph/functions/structural_holes/AP_Greedy.py
easygraph/functions/structural_holes/HAM.py
easygraph/functions/structural_holes/HIS.py
easygraph/functions/structural_holes/ICC.py
easygraph/functions/structural_holes/MaxD.py
easygraph/functions/structural_holes/NOBE.py
easygraph/functions/structural_holes/SHII_metric.py
easygraph/functions/structural_holes/__init__.py
easygraph/functions/structural_holes/evaluation.py
easygraph/functions/structural_holes/maxBlock.py
easygraph/functions/structural_holes/metrics.py
easygraph/functions/structural_holes/weakTie.py
easygraph/functions/tests/__init__.py
easygraph/functions/tests/test_isolate.py
easygraph/ml_metrics/__init__.py
easygraph/ml_metrics/base.py
easygraph/ml_metrics/classification.py
easygraph/ml_metrics/hypergraphs/__init__.py
easygraph/ml_metrics/hypergraphs/hypergraph.py
easygraph/model/__init__.py
easygraph/model/hypergraphs/__init__.py
easygraph/model/hypergraphs/dhcf.py
easygraph/model/hypergraphs/dhne.py
easygraph/model/hypergraphs/hgnn.py
easygraph/model/hypergraphs/hgnnp.py
easygraph/model/hypergraphs/hnhn.py
easygraph/model/hypergraphs/hwnn.py
easygraph/model/hypergraphs/hypergcn.py
easygraph/model/hypergraphs/setgnn.py
easygraph/model/hypergraphs/unignn.py
easygraph/nn/__init__.py
easygraph/nn/loss.py
easygraph/nn/regularization.py
easygraph/nn/convs/__init__.py
easygraph/nn/convs/common.py
easygraph/nn/convs/pma.py
easygraph/nn/convs/hypergraphs/__init__.py
easygraph/nn/convs/hypergraphs/dhcf_conv.py
easygraph/nn/convs/hypergraphs/halfnlh_conv.py
easygraph/nn/convs/hypergraphs/hgnn_conv.py
easygraph/nn/convs/hypergraphs/hgnnp_conv.py
easygraph/nn/convs/hypergraphs/hnhn_conv.py
easygraph/nn/convs/hypergraphs/hwnn_conv.py
easygraph/nn/convs/hypergraphs/hypergcn_conv.py
easygraph/nn/convs/hypergraphs/unignn_conv.py
easygraph/nn/tests/__init__.py
easygraph/nn/tests/test_gatconv.py
easygraph/nn/tests/test_gcnconv.py
easygraph/nn/tests/test_graphsageconv.py
easygraph/nn/tests/test_regularization.py
easygraph/readwrite/__init__.py
easygraph/readwrite/edgelist.py
easygraph/readwrite/gexf.py
easygraph/readwrite/gml.py
easygraph/readwrite/graphml.py
easygraph/readwrite/graphviz.py
easygraph/readwrite/pajek.py
easygraph/readwrite/pickle.py
easygraph/readwrite/ucinet.py
easygraph/readwrite/json_graph/__init__.py
easygraph/readwrite/json_graph/node_link.py
easygraph/readwrite/tests/__init__.py
easygraph/readwrite/tests/test_edgelist.py
easygraph/readwrite/tests/test_gexf.py
easygraph/readwrite/tests/test_gml.py
easygraph/readwrite/tests/test_graphml.py
easygraph/readwrite/tests/test_graphviz.py
easygraph/readwrite/tests/test_pajek.py
easygraph/readwrite/tests/test_pickle.py
easygraph/readwrite/tests/test_ucinet.py
easygraph/tests/__init__.py
easygraph/tests/script_test_cpp_easygraph.py
easygraph/tests/teddy_test_cpp_easygraph_sanity_check.py
easygraph/tests/test_convert.py
easygraph/tests/test_cpp_easygraph.py
easygraph/utils/__init__.py
easygraph/utils/alias.py
easygraph/utils/convert_class.py
easygraph/utils/convert_to_matrix.py
easygraph/utils/decorators.py
easygraph/utils/download.py
easygraph/utils/exception.py
easygraph/utils/index_of_node.py
easygraph/utils/logging.py
easygraph/utils/mapped_queue.py
easygraph/utils/misc.py
easygraph/utils/relabel.py
easygraph/utils/sparse.py
easygraph/utils/type_change.py