graphrs

graphrs is a Rust package for the creation, manipulation and analysis of graphs.

It allows graphs to be created with support for: * directed and undirected edges * multiple edges between two nodes * self-loops * acyclic enforcement

Major structs

Examples

``` use graphrs::{Edge, Graph, GraphSpecs, MissingNodeStrategy, Node};

let nodes = vec![ Node::fromname("n1"), Node::fromname("n2"), Node::from_name("n3"), ];

let edges = vec![ Edge::withattribute("n1", "n2", "weight", &1.0), Edge::withattribute("n2", "n1", "weight", &2.0), Edge::withattribute("n1", "n3", "weight", &3.0), Edge::withattribute("n2", "n3", "weight", &3.0), ];

let specs = GraphSpecs::directed();

let graph = Graph::<&str, &str, &f64>::newfromnodesandedges( nodes, edges, specs ); ```