sim_lib_femm_codec/lib.rs
1#![forbid(unsafe_code)]
2#![deny(missing_docs)]
3#![allow(deprecated)]
4//! Codec surface for FEMM model, solution, and field descriptors.
5//!
6//! The kernel defines the `Value`/`Expr`/`Shape`/codec protocol contracts and
7//! sim-numbers supplies the number domains, tensors, and linear algebra; this
8//! crate supplies the FEM behavior: the citizen descriptors and Lisp/JSON
9//! summary forms that round-trip FEMM domain objects across codec surfaces.
10
11mod citizen;
12mod support;
13mod values;
14
15pub use citizen::*;
16pub use values::*;
17
18#[cfg(test)]
19mod tests;