Trait lattices::LatticeMorphism
source · pub trait LatticeMorphism<LatIn> {
type Output;
// Required method
fn call(&mut self, lat_in: LatIn) -> Self::Output;
}
Expand description
Semilattice morphism. Lattice merge must distribute over this unary function.
Use crate::test::check_lattice_morphism
to spot-test an implementation.