rsrl 0.8.1

A fast, extensible reinforcement learning framework in Rust
Documentation
//! Reinforcement learning should be _fast_, _safe_ and _easy to use_.
//!
//! `rsrl` provides generic constructs for reinforcement learning (RL)
//! experiments in an extensible framework with efficient implementations of
//! existing methods for rapid prototyping.
// #![warn(missing_docs)]

#[macro_use]
extern crate ndarray;
extern crate ndarray_linalg;
extern crate rand;
extern crate rand_distr;

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

#[allow(unused_imports)]
#[macro_use]
extern crate rsrl_derive;
#[doc(hidden)]
pub use self::rsrl_derive::*;

extern crate lfa;
pub extern crate rsrl_domains as domains;

mod core;
pub use self::core::*;

mod utils;

pub extern crate spaces;

pub mod params;
#[macro_use]
pub mod fa;
pub mod traces;
pub mod prediction;
pub mod control;
pub mod policies;