Class FSTInfo
- java.lang.Object
-
- org.apache.pinot.segment.local.utils.nativefst.builder.FSTInfo
-
public final class FSTInfo extends Object
Compute additional information about a FST: number of arcs, nodes, etc.
-
-
Field Summary
Fields Modifier and Type Field Description int_arcsCountNumber of arcs in the automaton, excluding an arcs from the zero node (initial) and an arc from the start node to the root node.int_arcsCountTotalTotal number of arcs, counting arcs that physically overlap due to merging.int_finalStatesCountNumber of final states (number of input sequences stored in the automaton).int_nodeCountNumber of nodes in the automaton.
-
-
-
Field Detail
-
_nodeCount
public final int _nodeCount
Number of nodes in the automaton.
-
_arcsCount
public final int _arcsCount
Number of arcs in the automaton, excluding an arcs from the zero node (initial) and an arc from the start node to the root node.
-
_arcsCountTotal
public final int _arcsCountTotal
Total number of arcs, counting arcs that physically overlap due to merging.
-
_finalStatesCount
public final int _finalStatesCount
Number of final states (number of input sequences stored in the automaton).
-
-
Constructor Detail
-
FSTInfo
public FSTInfo(FST fst)
-
-