mck 0.7.1

Utility crate for the formal verification tool machine-check
Documentation
use std::fmt::Debug;
use std::hash::Hash;

use super::{abstr, misc::MachineMisc};

pub trait Input: Debug + PartialEq + Eq + Hash + Clone + Send + Sync {}

impl<T: Debug + PartialEq + Eq + Hash + Clone + Send + Sync> Input for T {}

pub trait Param: Debug + PartialEq + Eq + Hash + Clone + Send + Sync {}

impl<T: Debug + PartialEq + Eq + Hash + Clone + Send + Sync> Param for T {}

pub trait State {}

impl<T: Debug + PartialEq + Eq + Hash + Clone + Send + Sync> State for T {}

pub trait Machine
where
    Self: Sized + 'static + Send + Sync,
{
    /**
     * Machine input.
     */
    type Input: Input;

    /**
     * Machine parameter.
     */
    type Param: Param;

    /**
     * Machine state.
     */
    type State: State;

    /**
     * Creates an initial state from an initial input.
     */
    #[must_use]
    fn init(&self, input: &Self::Input, param: &Self::Param) -> Self::State;

    /**
     * Creates next state from current state, given the input.
     */
    #[must_use]
    fn next(&self, state: &Self::State, input: &Self::Input, param: &Self::Param) -> Self::State;
}

pub trait Test {
    fn into_bool(self) -> bool;
}

pub trait FullMachine: Machine + MachineMisc {
    type Abstr: abstr::Machine<Self>;
}

pub trait IntoMck {
    type Type;
    #[must_use]
    fn into_mck(self) -> Self::Type;
}