b10ba13729e1571c2f518330c54359f230b85083
[Mitarbeiter/Tim-Zeitz/stud-rust-base.git] / 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;