Crates.io | spectre |
lib.rs | spectre |
version | 0.7.0 |
source | src |
created_at | 2022-02-07 19:45:55.873461 |
updated_at | 2023-05-15 11:14:24.832821 |
description | A lightweight toolkit for analysing p2p network topologies. |
homepage | |
repository | https://github.com/niklaslong/spectre |
max_upload_size | |
id | 528570 |
size | 75,707 |
In French, the spectrum of a matrix is called "spectre".
This micro-library contains a small toolkit helpful in analysing network topologies. Namely:
The library is centered around the Graph
structure which can be constructed
from one or more Edge
instances. Once constructed, various measurements and
matrix representations of the graph can be computed.
use std::net::SocketAddr;
use spectre::edge::Edge;
use spectre::graph::Graph;
// Construct the graph instance.
let mut graph = Graph::new();
// Create some addresses to be part of a network topology.
let addrs: Vec<SocketAddr> = (0..3)
.map(|i| format!("127.0.0.1:{i}").parse().unwrap())
.collect();
let (a, b, c) = (addrs[0], addrs[1], addrs[2]);
// Insert some edges, note the IDs can be any type that is `Copy + Eq + Hash + Ord`.
graph.insert(Edge::new(a, b));
graph.insert(Edge::new(a, c));
// Compute some metrics on that state of the graph.
let density = graph.density();
let degree_centrality_delta = graph.degree_centrality_delta();
// Matrices can be pretty printed...
println!("{}", graph.laplacian_matrix());
// ...outputs:
// ┌ ┐
// │ 2 -1 -1 │
// │ -1 1 0 │
// │ -1 0 1 │
// └ ┘