C# Class LevenshteinAutomaton.SpellChecker.SpellCheckerState

Search state
Show file 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 property

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

AutomataState public property

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

Node public property

Current trie node
public TrieNode,LevenshteinAutomaton Node
return TrieNode