12 lines
389 B
Rust
Raw Normal View History

2026-03-13 00:18:14 +00:00
pub mod error;
pub mod ontology;
pub mod types;
pub use error::OntologyError;
pub use ontology::{Core, Gate, Ontology, State};
pub use types::{
AbstractionLevel, CoreConfig, Coupling, Dimension, DimensionState, Duration, Edge, EdgeType,
GateConfig, Horizon, Membrane, Node, OpeningCondition, Permeability, Pole, Protocol,
SignalType, StateConfig, TensionLevel, Transition,
};