1 2 3 4 5 6 7 8 9 10 11
pub mod diff_impl; pub mod forward; pub mod reverse; #[cfg(test)] mod proptests; pub use diff_impl::{diff, DiffError}; #[allow(deprecated)] pub use forward::{diff_forward, DualValue, ForwardDiffError}; pub use reverse::grad;