mady 0.1.0-beta

🌲 ahead-of-time automatic differentiation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]
pub mod prelude {
    #[cfg(feature = "macro")]
    pub use mady_macro::*;
    #[cfg(feature = "math")]
    pub use mady_math::prelude::*;
}

#[cfg(feature = "macro")]
pub use mady_macro as _;
#[cfg(feature = "math")]
pub use mady_math as math;