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
11
12
#![forbid(unsafe_code)]
#![deny(missing_docs)]

//! Automatic differentiation primitives: forward-mode dual numbers, a
//! reverse-mode evaluation tape, and the `Scalarish` numeric trait they share.

mod implementation;

pub use implementation::{Dual, Scalarish, Tape, TapeNode, Var};

#[cfg(test)]
mod tests;