1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//! # LFA
//!
//! LFA is a framework for linear function approximation with gradient descent.
#[allow(unused_imports)]
#[macro_use]
extern crate lfa_derive;
#[doc(hidden)]
pub use self::lfa_derive::*;

extern crate itertools;
extern crate elementwise;

#[cfg(feature = "serialize")] extern crate serde;
#[cfg_attr(feature = "serialize", macro_use)]
#[cfg(feature = "serialize")]
extern crate serde_derive;

#[cfg(tests)]
extern crate quickcheck;

pub extern crate spaces as geometry;

mod macros;
mod utils;

#[macro_use]
pub mod core;
pub mod eval;
#[macro_use]
pub mod basis;
pub mod transforms;
pub mod composition;

import_all!(lfa);