automata_core 0.2.1

Deterministic and nondeterministic automata algorithms in Rust
Documentation
1
2
3
4
5
6
//! State indices for [`super::SimpleLabeledDFA`] and [`super::SimpleLabeledNFA`].

/// State id in a [`super::SimpleLabeledDFA`] (dense `0..n`).
pub type SimpleLabeledDFAState = usize;
/// State id in a [`super::SimpleLabeledNFA`] (dense `0..n`).
pub type SimpleLabeledNFAState = usize;