pub trait ProjectionFunction:
Debug
+ Send
+ Sync {
// Required methods
fn compare(&self, a: TermId, b: TermId, manager: &TermManager) -> bool;
fn mk_lt(&self, x: TermId, y: TermId, manager: &mut TermManager) -> TermId;
}Expand description
Trait for projection functions (maps infinite domain to finite representatives)