Differentiable expression templates in compile-time, dependency-free, no_std Rust.
Basics:
rust
use dxpr::prelude::*;
let x = 4; // Any type works; no special wrappers
let expr = -var(&x); // Unevaluated expression
assert_eq!(-4, expr.eval()); // Evaluated (expr moved)
let dvdx = (-var(&x)).grad(&x); // Automatic differentiation!
// ...into another differentiable expression!
assert_eq!(-1, (&dvdx).eval()); // dvdx NOT moved yet: reusable
assert_eq!(0, dvdx.grad(&x).grad(&x).grad(&x).grad(&x).eval());
Want to implement differentiable expressions for your own types and functions? ```rust
use dxpr::{prelude::*, eval::Eval}; struct Teleport { arg: u8 }; // Unevaluated Teleport operation const fn tp(x: u8) -> Teleport { Teleport { arg: x } } // Not yet! dxpr::implementeval!( // Now define what the operation does: Teleport >-> u16: // Op type >-> output type |self| (self.arg as u16) << 8); // Function definition let _ = tp(1); // Unevaluated expression asserteq!(256, tp(1).eval()); // Done! ```
At compile time: ```rust
use dxpr::{expr::Expr, ops::Neg, prelude::*};
const X: i32 = 4;
const A: Expr<&i32> = var(&X);
const EXPRESSION: Exprbuild.rs
could easily evaluate an arbitrary expression and write it, unevaluated, to a file.
```
+
in macro :path
argumentsIndex
and RangeBound
operators (i.e. a[b]
and a..b
)