pub trait ContextRefinement {
// Required method
fn refines(&self, c_prime: &str, c: &str) -> bool;
}Expand description
External refinement relation: which contexts refine which.
refines(c_prime, c) returns true iff c_prime -> c in the
context category. The relation must be reflexive and transitive
for Theorem 4 to apply.