C# Class LevenshteinAutomaton.SpellChecker.SpellCheckerState

Search state
Mostrar archivo Open project: ibendrup/LevenshteinAutomaton

Public Properties

Property Type Description
AutomataOffset int
AutomataState int
Node TrieNode

Public Methods

Method Description
Equals ( object obj ) : bool
GetHashCode ( ) : int
SpellCheckerState ( TrieNode node, int state, int offset ) : System

Method Details

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool

GetHashCode() public method

public GetHashCode ( ) : int
return int

SpellCheckerState() public method

public SpellCheckerState ( TrieNode node, int state, int offset ) : System
node TrieNode
state int
offset int
return System

Property Details

AutomataOffset public_oe property

The offset of the Levenshtein automaton.
public int AutomataOffset
return int

AutomataState public_oe property

The state of the Levenshtein automaton.
public int AutomataState
return int

Node public_oe property

Current trie node
public TrieNode,LevenshteinAutomaton Node
return TrieNode