Graph

Graph representation.

Fully qualified path: alexandria_searching::dijkstra::Graph

#![allow(unused)]
fn main() {
pub struct Graph<T> {
    pub(crate) nodes: Array<Node>,
    adj_nodes: Felt252Dict<T>,
}
}