Struct momba_explore::Explorer[][src]

pub struct Explorer<T: TimeType> {
    pub network: Network,
    // some fields omitted
}

A state space explorer for a particular automaton network.

Fields

network: Network

Implementations

impl<T: TimeType> Explorer<T>[src]

pub fn new(network: Network) -> Self[src]

Constructs a new state space explorer from the provided network.

pub fn initial_states(&self) -> Vec<State<T::Valuations>>[src]

Returns a vector of initial states of the network.

pub fn transitions<'c>(
    &'c self,
    state: &State<T::Valuations>
) -> Vec<Transition<'c, T>>
[src]

Returns a vector of outgoing transitions of the given state.

pub fn destinations<'c>(
    &'c self,
    state: &State<T::Valuations>,
    transition: &Transition<'c, T>
) -> Vec<Destination<'c, T>>
[src]

Returns a vector of destinations for a given transition.

Panics if the transition has not been generated from the provided state.

pub fn successor<'c>(
    &'c self,
    state: &State<T::Valuations>,
    transition: &Transition<'c, T>,
    destination: &Destination<'_, T>
) -> State<T::Valuations>
[src]

Returns the successor state reached via a destination.

Panics if the destination has not been generated from the provided state and transition.

pub fn externalize_transition(
    &self,
    transition: &Transition<'_, T>
) -> Transition<T>
[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Explorer<T>

impl<T> Send for Explorer<T> where
    T: Send,
    <T as TimeType>::CompiledClocks: Send,
    <T as TimeType>::CompiledDifference: Send

impl<T> Sync for Explorer<T> where
    T: Sync,
    <T as TimeType>::CompiledClocks: Sync,
    <T as TimeType>::CompiledDifference: Sync

impl<T> Unpin for Explorer<T> where
    T: Unpin

impl<T> !UnwindSafe for Explorer<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,