| Package | Description |
|---|---|
| edu.cmu.sphinx.trainer |
| Modifier and Type | Field and Description |
|---|---|
Node |
Edge.destinationNode
The destination node for this edge
|
Node |
Edge.sourceNode
The source node for this edge
|
| Modifier and Type | Method and Description |
|---|---|
Node |
Edge.getDestination()
Gets the destination node for a given edge.
|
Node |
UtteranceGraph.getFinalNode()
Gets the final node in this graph
|
Node |
Graph.getFinalNode()
Get the final node
|
Node |
UtteranceGraph.getInitialNode()
Gets the initial node in this graph
|
Node |
Graph.getInitialNode()
Get the initial node
|
Node |
UtteranceGraph.getNode(int index)
Get node at the specified position in the list.
|
Node |
Graph.getNode(int index)
Get node at the specified position in the list.
|
Node |
Edge.getSource()
Gets source node for a given edge.
|
Node |
Graph.nextNode() |
Node[] |
Graph.nodeToArray()
Gets an array containing the nodes in this graph.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Graph.addNode(Node node)
Add node to list of nodes.
|
int |
UtteranceGraph.indexOf(Node node)
Gets the index of a particular node in the graph.
|
int |
Graph.indexOf(Node node)
Gets the index of a particular node in the graph.
|
void |
Graph.insertGraph(Graph graph,
Node node)
Insert a graph in the current graph, replacing a particular node.
|
boolean |
Graph.isEdgeInGraph(Node edge)
Check if an edge is in the graph.
|
boolean |
UtteranceGraph.isFinalNode(Node node)
Returns whether the given node is the final node in this graph.
|
boolean |
Graph.isFinalNode(Node node)
Returns whether the given node is the final node in this graph.
|
boolean |
UtteranceGraph.isInitialNode(Node node)
Returns whether the given node is the initial node in this graph.
|
boolean |
Graph.isInitialNode(Node node)
Returns whether the given node is the initial node in this graph.
|
boolean |
Graph.isNodeInGraph(Node node)
Check if a node is in the graph.
|
Edge |
Graph.linkNodes(Node sourceNode,
Node destinationNode)
Link two nodes.
|
void |
Edge.setDestination(Node node)
Sets the destination node for a given edge.
|
void |
Graph.setFinalNode(Node node)
Set the final node
|
void |
Graph.setInitialNode(Node node)
Set the initial node
|
void |
Edge.setSource(Node node)
Sets source node for a given edge.
|