//! Semantic transformations for logical expressions.
//!
//! This module provides post-parse semantic transformations:
//!
//! - **[`apply_axioms`]**: Expands predicates with entailments and hypernymy
//! - **[`apply_kripke_lowering`]**: Converts modals to explicit world quantification
//!
//! These transformations enrich the logical representation with inferred content.
pub use apply_axioms;
pub use apply_kripke_lowering;
include!;