Package net.sf.tweety.commons.util
Class SubsetIterator<T>
- java.lang.Object
-
- net.sf.tweety.commons.util.SubsetIterator<T>
-
- Type Parameters:
T- The elements of the set
- Direct Known Subclasses:
DefaultSubsetIterator,IncreasingSubsetIterator,RandomSubsetIterator
public abstract class SubsetIterator<T> extends Object implements Iterator<Set<T>>
Iterates over all subsets of a given set.- Author:
- Matthias Thimm
-
-
Constructor Summary
Constructors Constructor Description SubsetIterator(Set<T> set)Creates a new subset iterator for the given set.
-