1
2
3
4
5
6
7
8
pub mod csr_matrix;
pub mod dr_matrix;

pub trait Matrix {
  fn cols(&self) -> usize;

  fn rows(&self) -> usize;
}