geoit 0.0.2

Exact geometric algebra with governed multivectors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Builder API for Rust-native geoit usage.
//!
//! This module IS the canonical Rust interface for constructing governances:
//!
//! - [`Algebra`] — binds signature + derived generators, wraps all GA operations
//! - [`GovernanceBuilder`] — chainable builder for governance construction
//! - [`GeomClassBuilder`] — constraint helpers: `null_constraint()`, `normalization()`
//! - [`NamedGovernance`] — string-keyed `construct("Point", &params)`, `govern(&mv, "Point")`
//!
//! A future `.gge` parser targets this API — it calls the same builders the direct user calls.

pub mod algebra;
pub mod govern;
pub mod macros;

pub use algebra::Algebra;
pub use govern::{GeomClassBuilder, GovernanceBuilder, NamedGovernance};