fr.liglab.jlcm.internals.tidlist.TidList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jLCM Show documentation
Show all versions of jLCM Show documentation
A multi-threaded implementation of the LCM (Linear Closed itemsets Miner) algorithm proposed by T.Uno and H.Arimura
The newest version!
package fr.liglab.jlcm.internals.tidlist;
import gnu.trove.iterator.TIntIterator;
public interface TidList extends Cloneable {
void addTransaction(int item, int transaction);
TIntIterable getIterable(int item);
TIntIterator get(int item);
TidList clone();
}