Package fim
Interface PatternReceiver
- All Known Implementing Classes:
ARuleSet
,PatternSet
public interface PatternReceiver
Interface for an item pattern receiver
(argument of the function
CloMaxTree.report()
).- Since:
- 2016.10.24
-
Method Summary
Modifier and TypeMethodDescriptionvoid
receive
(int[] items, int cnt, int s_pat, int s_base) Add an item pattern to the pattern receiver.
-
Method Details
-
receive
void receive(int[] items, int cnt, int s_pat, int s_base) Add an item pattern to the pattern receiver.- Parameters:
items
- the items in the item pattern (may be an oversized buffer)cnt
- the number of items in the patterns_pat
- the (absolute) support of the item patterns_base
- the (absolute) base support (support of the empty item pattern, database size)- Since:
- 2017.06.29 (Christian Borgelt)
-