Skip to main content

automation_structures/primitives/
mod.rs

1//! Primitive carriers.
2
3/// Allocation-to-effect lifecycle primitive.
4pub mod actuation_pass;
5/// Hash-linked audit history primitive.
6pub mod audit_sink;
7/// Reversible depth-first traversal primitive.
8pub mod backtracking_traversal;
9/// Capacity ownership primitive.
10pub mod budget;
11/// Hard, exclusive, soft, and ranked selection primitive family.
12pub mod competitive_selection;
13/// Phase-aware convergence control primitive.
14pub mod convergence_governor_phase_aware;
15/// Snapshot-local propagation primitive.
16pub mod propagation_pass;
17/// Parent-child quality hierarchy primitive.
18pub mod quality_hierarchy;
19/// Unique-key resource registry primitive.
20pub mod resource_registry;