pub struct CheckInitCondSatSMT {}Expand description
Preprocessor that checks whether the initial conditions of threshold automaton are satisfiable at all. If this is not the case, replaces them with false and deletes all rules
Implementations§
Source§impl CheckInitCondSatSMT
impl CheckInitCondSatSMT
Sourcepub fn new() -> Self
pub fn new() -> Self
Create a new instance of the CheckInitCondSatSMT preprocessor
Trait Implementations§
Source§impl Default for CheckInitCondSatSMT
impl Default for CheckInitCondSatSMT
Source§impl<S: TargetSpec, C: ModelCheckerContext + ProvidesSMTSolverBuilder> Preprocessor<GeneralThresholdAutomaton, S, C> for CheckInitCondSatSMT
impl<S: TargetSpec, C: ModelCheckerContext + ProvidesSMTSolverBuilder> Preprocessor<GeneralThresholdAutomaton, S, C> for CheckInitCondSatSMT
Auto Trait Implementations§
impl Freeze for CheckInitCondSatSMT
impl RefUnwindSafe for CheckInitCondSatSMT
impl Send for CheckInitCondSatSMT
impl Sync for CheckInitCondSatSMT
impl Unpin for CheckInitCondSatSMT
impl UnwindSafe for CheckInitCondSatSMT
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more