sim-lib-numbers-ad 0.1.0

SIM workspace package for sim lib numbers ad.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Implementation of the autodiff primitives: forward-mode dual numbers, the
//! reverse-mode tape, and the shared `Scalarish` trait.

mod dual;
mod scalarish;
mod tape;

pub use dual::Dual;
pub use scalarish::Scalarish;
pub use tape::{Tape, TapeNode, Var};