Constructs a KMP matcher to find exact occurances of pattern in text using the Knuth-Morris-Pratt algorithm.

Namespace:  BioSharp.Core.Bio.Search
Assembly:  BioSharp.Core (in BioSharp.Core.dll) Version: 0.1.3191.26120 (0.1.0.0)

Syntax

C#
public KnuthMorrisPrattSearch(
	ISymbolList pattern
)

Parameters

pattern
Type: BioSharp.Core.Bio.Symbol..::.ISymbolList
the pattern to search for

Remarks

A new class should be constructed for each occurance of pattern.

See Also