translate encode_vector
[Mitarbeiter/Tim-Zeitz/stud-rust-base.git] / src / types.rs
1 use std;
2
3 pub type NodeId = u32;
4 pub type EdgeId = u32;
5 pub type Weight = u32;
6 pub const INFINITY: Weight = std::u32::MAX / 2;