Package | Description |
---|---|
org.processmining.logfiltering.algorithms.SPMF.RuleGrowth |
Modifier and Type | Class and Description |
---|---|
class |
Itemset
This class represents an itemset (a set of items) where the itemset is an array of integers
sorted by lexical order where no item can appear twice, and
the ids of transactions/sequences containing this itemset is represented
as a set of integers.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Integer |
AbstractOrderedItemset.allTheSameExceptLastItem(AbstractOrderedItemset itemset2)
Check if the items from this itemset are all the same as those of another itemset
except the last item
and that itemset2 is lexically smaller than this itemset.
|
boolean |
AbstractOrderedItemset.allTheSameExceptLastItemV2(AbstractOrderedItemset itemset2)
This method checks if this itemset is the same as another itemset
except for the last item.
|
boolean |
AbstractOrderedItemset.containsAll(AbstractOrderedItemset itemset2)
This methods checks if another itemset is contained in this one.
|
boolean |
AbstractOrderedItemset.isEqualTo(AbstractOrderedItemset itemset2)
This method compare this itemset with another itemset to see if they are
equal.
|