C# Class LibiadaCore.Misc.Iterators.DefaultCutRule

Cut rule with default starts and ends.
Inheritance: CutRule
显示文件 Open project: intervals-mining-lab/libiada-core

Public Methods

Method Description
DefaultCutRule ( List starts, List ends ) : System.Collections.Generic

Initializes a new instance of the DefaultCutRule class.

DefaultCutRule ( int start, int end ) : System.Collections.Generic

Initializes a new instance of the DefaultCutRule class with one subsequence.

GetIterator ( ) : CutRuleIterator

Returns iterator for this cut rule.

Method Details

DefaultCutRule() public method

Initializes a new instance of the DefaultCutRule class.
public DefaultCutRule ( List starts, List ends ) : System.Collections.Generic
starts List /// Start positions of subsequences. ///
ends List /// End positions of subsequences. ///
return System.Collections.Generic

DefaultCutRule() public method

Initializes a new instance of the DefaultCutRule class with one subsequence.
public DefaultCutRule ( int start, int end ) : System.Collections.Generic
start int /// Start position of subsequence. ///
end int /// End position of subsequence. ///
return System.Collections.Generic

GetIterator() public method

Returns iterator for this cut rule.
public GetIterator ( ) : CutRuleIterator
return CutRuleIterator