tenferro_internal_ad_core/
lib.rs

1//! Internal implementation crate. Not a stable public API.
2//!
3//! # Examples
4//!
5//! ```text
6//! // This crate is wired through tenferro surface crates and is not intended
7//! // to be consumed directly.
8//! ```
9
10mod core;
11mod value;
12
13pub use core::NodeId;
14pub use tidu::{
15    AdResult, AutodiffError, CheckpointHint, LinearizableOp, LinearizedOp, Schema, SlotSchema,
16    Value,
17};
18pub use value::{new_dyn_value, new_reverse_leaf, DynValue};