use crateAd;
pub type vec<const L: usize> = SVector;
pub type mat<const RC: usize> = SMatrix;
/// Automatic differentiated vector (from nalgebra)
/// N is the variable size the vector is w.r.t.
pub type advec<const N: usize, const L: usize> = SVector;
/// Automatic differentiated matrix (from nalgebra)
/// N is the variable size the matrix is w.r.t.
pub type admat<const N: usize, const R: usize, const C: usize> = SMatrix;