mop-structs 0.0.10

Low-level structures for MOP
Documentation
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;
}