sim-lib-numbers-cas-diff 0.1.0

SIM workspace package for sim lib numbers cas diff.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Internal layout of the CAS differentiation library: the `diff` engine, the
//! `integrate` engine and its function object, the `function` `Lib` wiring, and
//! the extensible differentiation-rule `registry`.

mod diff;
mod function;
mod integrate;
mod integrate_function;
mod registry;

pub use diff::{diff_cas, diff_symbol};
pub use function::CasDiffLib;
pub use integrate::{integrate_cas, integrate_sym_symbol};
pub use registry::{CasDiffRegistry, DiffRule, global_diff_registry, register_diff_rule};