/* Copyright (C) 2020 Dylan Staatz - All Rights Reserved. */
pub use LeaderFollowerCoordinates;
pub use LinearCoordinates;
////////////////////////////////////////////////////////////////////////////////
use Pcg64Mcg;
// TODO: select RNG based on the cpu type (32-bit or 64-bit)
// but changing this would break some tests
/// The choosen seedable pseudorandom number generator used crate-wide
pub type RNG = Pcg64Mcg;