//! Composite AD operations: Jacobian and Hessian computations.
//!
//! Higher-level wrappers that orchestrate the modes in [`crate::forward`]
//! and [`crate::reverse`] to produce the canonical derivative objects
//! (`J ∈ R^{m × n}`, `H ∈ R^{n × n}`) without users wiring tapes or
//! seed matrices by hand. `compute_full_hessian` is exact (one
//! `Jet2Vec` forward pass); `compute_hessian` is the finite-difference
//! variant for when `Jet2Vec` is not an option.
//!
//! See also (theory): [`docs/theory/04-second-order-and-k-jets.md`](https://github.com/sercanatalik/xad-rs/blob/main/docs/theory/04-second-order-and-k-jets.md).
pub use ;
pub use ;