Skip to main content

sim_lib_numbers_ad/
lib.rs

1#![forbid(unsafe_code)]
2#![deny(missing_docs)]
3
4//! Automatic differentiation primitives: forward-mode dual numbers, a
5//! reverse-mode evaluation tape, and the `Scalarish` numeric trait they share.
6
7mod implementation;
8
9pub use implementation::{Dual, Scalarish, Tape, TapeNode, Var};
10
11#[cfg(test)]
12mod tests;