sim-lib-numbers-func 0.1.0-rc.1

SIM workspace package for sim lib numbers func.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]
#![allow(deprecated)]
#![deny(missing_docs)]

//! Function number domain: callable function values built over CAS or native
//! bodies, with `fn`, `call`, and `grad` operations for the `Func` domain.

mod implementation;

pub use implementation::{
    Func, FuncMetadata, FuncNumbersLib, NativeFn, call_symbol, fn_symbol, func_class_symbol,
    func_domain_symbol, grad_symbol,
};

#[cfg(test)]
mod tests;