Struct extemp::Automaton 
                   
                       [−]
                   
               [src]
pub struct Automaton {
    // some fields omitted
}A static description of a temporal automaton.
pub struct Automaton {
    // some fields omitted
}A static description of a temporal automaton.
impl Automatonfn new<A, B>(name: A, description: B, variables: Vec<String>) -> Automaton where A: Into<String>, B: Into<String>fn name(&self) -> &strfn description(&self) -> &strfn state(&self, id: StateID) -> &Statefn add_state(&mut self, mask: Mask, accepting: bool) -> StateIDfn add_transition(&mut self, source: StateID, dest: StateID, t: Transition) -> &mut Automatonimpl IntoDFA for Automatonimpl ToDot for Automaton