Trait SmtModel
pub trait SmtModel<'ctx, S: SmtSolver<'ctx>>: Debug {
    // Required method
    fn get_const_interp(&self, name: &S::BV) -> Option<S::BV>;
}Expand description
Model for satisfied assertions.
Required Methods§
fn get_const_interp(&self, name: &S::BV) -> Option<S::BV>
fn get_const_interp(&self, name: &S::BV) -> Option<S::BV>
Obtain the value for a constant in the model.