pub struct CoinductiveProof<S: Clone + Eq> {
pub relation: BisimulationRelation<S>,
pub progress: Vec<String>,
}Expand description
A completed coinductive proof certificate.
Contains the bisimulation relation that was found to be valid, plus a trace of the progress steps made during the proof search.
Fields§
§relation: BisimulationRelation<S>§progress: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for CoinductiveProof<S>
impl<S> RefUnwindSafe for CoinductiveProof<S>where
S: RefUnwindSafe,
impl<S> Send for CoinductiveProof<S>where
S: Send,
impl<S> Sync for CoinductiveProof<S>where
S: Sync,
impl<S> Unpin for CoinductiveProof<S>where
S: Unpin,
impl<S> UnsafeUnpin for CoinductiveProof<S>
impl<S> UnwindSafe for CoinductiveProof<S>where
S: UnwindSafe,
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