| Package | Description |
|---|---|
| edu.cmu.sphinx.fst | |
| edu.cmu.sphinx.fst.sequitur |
| Modifier and Type | Class and Description |
|---|---|
class |
ImmutableState
The fst's immutable state implementation.
|
| Modifier and Type | Field and Description |
|---|---|
protected State |
Fst.start |
| Modifier and Type | Method and Description |
|---|---|
State |
Arc.getNextState()
Get the next state
|
State |
Fst.getStart()
Get the initial states
|
State |
Fst.getState(int index) |
| Modifier and Type | Method and Description |
|---|---|
void |
ImmutableFst.addState(State state) |
void |
Fst.addState(State state)
Adds a state to the fst
|
void |
ImmutableFst.deleteState(State state) |
void |
Fst.deleteState(State state)
Deletes a state
|
void |
Arc.setNextState(State nextState)
Set the next state
|
void |
Fst.setStart(State start)
Set the initial state
|
| Modifier and Type | Method and Description |
|---|---|
void |
Fst.deleteStates(java.util.HashSet<State> toDelete) |
| Constructor and Description |
|---|
Arc(int iLabel,
int oLabel,
float weight,
State nextState)
Arc Constructor
|
| Modifier and Type | Method and Description |
|---|---|
State |
SequiturImport.State.toUnconnectedOpenFstState() |
| Modifier and Type | Method and Description |
|---|---|
void |
SequiturImport.State.connectStates(java.util.List<State> openFstStates)
add arcs to the state now that all states are available as possible
targets
|
Arc |
SequiturImport.Arc.toOpenFstArc(java.util.List<State> openFstStates) |