meritrank 0.4.0

MeritRank is a Rust library for computing merit scores and rankings in a directed graph.
Documentation
pub mod common;
pub mod constants;
pub mod counter;
pub mod debug;
pub mod edge;
pub mod errors;
pub mod graph;
pub mod node;
pub mod poswalk;
pub mod random_walk;
pub mod rank;
pub mod walk;
pub mod walk_storage;

pub use counter::{Counter, CounterIterator};
pub use edge::EdgeId;
pub use errors::MeritRankError;
pub use graph::{MyDiGraph, MyGraph};
pub use node::{Node, NodeId, Weight};
pub use poswalk::PosWalk;
pub use random_walk::RandomWalk;
pub use rank::MeritRank;
pub use walk::{WalkId, WalkIdGenerator};
pub use walk_storage::WalkStorage;