pub trait StepSMT: SMTVariableContext<Rule> {
// Provided method
fn get_rules_applied(
&self,
solver: &mut SMTSolver,
res: SMTSolution,
) -> Result<impl Iterator<Item = (Rule, u32)>, SMTSolverError> { ... }
}Expand description
Trait implemented by symbolic steps
Provided Methods§
Sourcefn get_rules_applied(
&self,
solver: &mut SMTSolver,
res: SMTSolution,
) -> Result<impl Iterator<Item = (Rule, u32)>, SMTSolverError>
fn get_rules_applied( &self, solver: &mut SMTSolver, res: SMTSolution, ) -> Result<impl Iterator<Item = (Rule, u32)>, SMTSolverError>
Returns the number of times a rule has been applied in the solution to this context
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.