1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! Main structures for peroxide
//!
//! * Matrix
//! * Vector
//! * Dual
//! * Hyper Dual
//! * Polynomial
//! * DataFrame (only for `dataframe` feature)
//! * Multinomial (not yet implemented)

pub mod ad;
pub mod dataframe;
pub mod dual;
pub mod hyper_dual;
pub mod matrix;
pub mod multinomial;
pub mod polynomial;
pub mod sparse;
pub mod vector;