pub trait GetPredicate {
// Required method
fn get_predicate(&self, addr: &PredicateAddress) -> Arc<Predicate>;
}
Required Methods§
Sourcefn get_predicate(&self, addr: &PredicateAddress) -> Arc<Predicate>
fn get_predicate(&self, addr: &PredicateAddress) -> Arc<Predicate>
Provides immediate access to the predicate with the given content address.
This is called by check_set_predicates
for each predicate in each solution being checked.
All necessary programs are assumed to have been read from storage and validated ahead of time.