1
2
3
4
5
6
7
8
9
extern crate csv;

pub mod data;
pub mod recommender;
pub mod sparse;
pub mod similarity;

/// Type alias for the user and item ids
pub type ID = usize;