//! Normalization, exposed to OCaml.
usesuper::term::OTerm;usesuper::theory;/// The normal form of a term under a rewrite theory.
#[ocaml::func]#[must_use]pubfnaufbau_normalize(rules:Vec<(OTerm, OTerm)>, t: OTerm)-> OTerm{let norm =theory::normalizer(rules);OTerm::lift(&norm.normalize(&t.lower()))}