Interface IDoubleLengthPcsClassifier
An algorithm defining equivalence classes for partial cyclic shifts (PCS) of length 2 * L in the input string.
Namespace: MoreStructures.SuffixArrays.CyclicShifts
Assembly: MoreStructures.dll
Syntax
public interface IDoubleLengthPcsClassifier
Remarks
The method Classify() has no input parameters because the input of the algorithm depends on the specific implementation.
Methods
| Improve this Doc View SourceClassify()
Runs the algorithm, calculating the equivalence classes of all PCS of length L in the input string.
Declaration
IList<int> Classify()
Returns
Type | Description |
---|---|
IList<System.Int32> | A list of equivalence classes, with as many items as PCS of length L in the input string. |