
fr.liglab.jlcm.internals.transactions.TransactionsList 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.transactions;
public interface TransactionsList extends Iterable, Cloneable {
void startWriting();
int beginTransaction(int transactionSupport);
void addItem(int item);
void compress(int coreItem);
/**
* @return how many distinct transactions are stored
*/
int size();
TransactionIterator getIterator();
public TransactionsList clone();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy