[][src]Enum ddo::core::abstraction::mdd::MDDType

pub enum MDDType {
    Relaxed,
    Restricted,
    Exact,
}

This enumeration characterizes the kind of MDD being generated. It can either be

  • Exact if it is a true account of the problem state space.
  • Restricted if it is an under approximation of the problem state space.
  • Relaxed if it is an over approximation of the problem state space.

Variants

Relaxed
Restricted
Exact

Trait Implementations

impl Clone for MDDType[src]

impl Copy for MDDType[src]

impl Debug for MDDType[src]

impl Eq for MDDType[src]

impl PartialEq<MDDType> for MDDType[src]

impl StructuralEq for MDDType[src]

impl StructuralPartialEq for MDDType[src]

Auto Trait Implementations

impl RefUnwindSafe for MDDType

impl Send for MDDType

impl Sync for MDDType

impl Unpin for MDDType

impl UnwindSafe for MDDType

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.