Crate scirs2_graph

Source
Expand description

Graph processing module for SciRS2

This module provides graph algorithms and data structures for scientific computing and machine learning applications.

§Features

  • Basic graph representations and operations
  • Graph algorithms (traversal, shortest paths, etc.)
  • Network analysis (centrality measures, community detection)
  • Spectral graph theory
  • Support for graph neural networks

Re-exports§

pub use algorithms::are_graphs_isomorphic;
pub use algorithms::are_graphs_isomorphic_enhanced;
pub use algorithms::articulation_points;
pub use algorithms::astar_search_digraph;
pub use algorithms::betweenness_centrality;
pub use algorithms::bidirectional_search_digraph;
pub use algorithms::breadth_first_search_digraph;
pub use algorithms::bridges;
pub use algorithms::cartesian_product;
pub use algorithms::center_nodes;
pub use algorithms::chromatic_number;
pub use algorithms::closeness_centrality;
pub use algorithms::complement;
pub use algorithms::connected_components;
pub use algorithms::cosine_similarity;
pub use algorithms::depth_first_search_digraph;
pub use algorithms::diameter;
pub use algorithms::dinic_max_flow;
pub use algorithms::edge_subgraph;
pub use algorithms::eigenvector_centrality;
pub use algorithms::eulerian_type;
pub use algorithms::find_isomorphism;
pub use algorithms::find_isomorphism_vf2;
pub use algorithms::find_motifs;
pub use algorithms::find_subgraph_matches;
pub use algorithms::floyd_warshall;
pub use algorithms::floyd_warshall_digraph;
pub use algorithms::fluid_communities;
pub use algorithms::graph_edit_distance;
pub use algorithms::greedy_coloring;
pub use algorithms::greedy_modularity_optimization;
pub use algorithms::has_hamiltonian_circuit;
pub use algorithms::has_hamiltonian_path;
pub use algorithms::hierarchical_communities;
pub use algorithms::infomap_communities;
pub use algorithms::is_bipartite;
pub use algorithms::jaccard_similarity;
pub use algorithms::k_core_decomposition;
pub use algorithms::k_shortest_paths;
pub use algorithms::label_propagation;
pub use algorithms::line_digraph;
pub use algorithms::line_graph;
pub use algorithms::louvain_communities;
pub use algorithms::maximal_matching;
pub use algorithms::maximum_bipartite_matching;
pub use algorithms::maximum_cardinality_matching;
pub use algorithms::minimum_cut;
pub use algorithms::minimum_spanning_tree;
pub use algorithms::minimum_weight_bipartite_matching;
pub use algorithms::modularity;
pub use algorithms::modularity_optimization;
pub use algorithms::pagerank;
pub use algorithms::personalized_pagerank;
pub use algorithms::push_relabel_max_flow;
pub use algorithms::radius;
pub use algorithms::random_walk;
pub use algorithms::random_walk;
pub use algorithms::shortest_path;
pub use algorithms::shortest_path;
pub use algorithms::shortest_path_digraph;
pub use algorithms::stable_marriage;
pub use algorithms::strongly_connected_components;
pub use algorithms::subdigraph;
pub use algorithms::subgraph;
pub use algorithms::tensor_product;
pub use algorithms::topological_sort;
pub use algorithms::transition_matrix;
pub use algorithms::weight_filtered_subgraph;
pub use algorithms::AStarResult;
pub use algorithms::BipartiteMatching;
pub use algorithms::BipartiteResult;
pub use algorithms::CommunityStructure;
pub use algorithms::EulerianType;
pub use algorithms::GraphColoring;
pub use algorithms::InfomapResult;
pub use algorithms::MaximumMatching;
pub use algorithms::MotifType;
pub use attributes::AttributeSummary;
pub use attributes::AttributeValue;
pub use attributes::AttributeView;
pub use attributes::AttributedDiGraph;
pub use attributes::AttributedGraph;
pub use attributes::Attributes;
pub use base::BipartiteGraph;
pub use base::DiGraph;
pub use base::Edge;
pub use base::EdgeWeight;
pub use base::Graph;
pub use base::Hyperedge;
pub use base::Hypergraph;
pub use base::MultiDiGraph;
pub use base::MultiGraph;
pub use base::Node;
pub use embeddings::DeepWalk;
pub use embeddings::DeepWalkConfig;
pub use embeddings::Embedding;
pub use embeddings::EmbeddingModel;
pub use embeddings::Node2Vec;
pub use embeddings::Node2VecConfig;
pub use embeddings::RandomWalk;
pub use embeddings::RandomWalkGenerator;
pub use error::GraphError;
pub use error::Result;
pub use generators::barabasi_albert_graph;
pub use generators::complete_graph;
pub use generators::cycle_graph;
pub use generators::erdos_renyi_graph;
pub use generators::grid_2d_graph;
pub use generators::grid_3d_graph;
pub use generators::hexagonal_lattice_graph;
pub use generators::path_graph;
pub use generators::planted_partition_model;
pub use generators::star_graph;
pub use generators::stochastic_block_model;
pub use generators::triangular_lattice_graph;
pub use generators::two_community_sbm;
pub use generators::watts_strogatz_graph;
pub use layout::circular_layout;
pub use layout::hierarchical_layout;
pub use layout::spectral_layout;
pub use layout::spring_layout;
pub use layout::Position;
pub use measures::centrality;
pub use measures::clustering_coefficient;
pub use measures::graph_density;
pub use measures::hits_algorithm;
pub use measures::katz_centrality;
pub use measures::katz_centrality_digraph;
pub use measures::pagerank_centrality;
pub use measures::pagerank_centrality_digraph;
pub use measures::CentralityType;
pub use measures::HitsScores;
pub use performance::LargeGraphIterator;
pub use performance::LargeGraphOps;
pub use performance::ParallelConfig;
pub use performance::PerformanceMonitor;
pub use performance::StreamingGraphProcessor;
pub use spectral::laplacian;
pub use spectral::normalized_cut;
pub use spectral::spectral_radius;
pub use temporal::temporal_betweenness_centrality;
pub use temporal::temporal_reachability;
pub use temporal::TemporalGraph;
pub use temporal::TemporalPath;
pub use temporal::TimeInstant;
pub use temporal::TimeInterval;
pub use weighted::MultiWeight;
pub use weighted::NormalizationMethod;
pub use weighted::WeightStatistics;
pub use weighted::WeightTransform;
pub use weighted::WeightedOps;

Modules§

algorithms
Graph algorithms
attributes
Node and edge attribute system
base
Base graph structures and operations
embeddings
Graph embedding algorithms and utilities
error
Error types for the graph processing module
generators
Graph generation algorithms
io
Input/output operations for graphs
layout
Graph layout algorithms for visualization
measures
Graph measures and metrics
performance
Performance optimizations for large graph operations
spectral
Spectral graph theory operations
temporal
Temporal graph structures and algorithms
weighted
Specialized weighted graph operations and analysis

Traits§

IndexType
Trait for the unsigned integer type used for node and edge indices.