- IntCombinations - Class in cc.redberry.combinatorics
-
Iterator over all unordered combinations (i.e.
- IntCombinations(int, int) - Constructor for class cc.redberry.combinatorics.IntCombinations
-
Constructs the iterator with the desired n and k
- IntCombinationsWithPermutations - Class in cc.redberry.combinatorics
-
Iterator over over all possible unique combinations with permutations (i.e.
- IntCombinationsWithPermutations(int, int) - Constructor for class cc.redberry.combinatorics.IntCombinationsWithPermutations
-
Constructs the iterator with the desired n and k
- IntCombinatorialPort - Interface in cc.redberry.combinatorics
-
This interface is common for all combinatorial iterators.
- IntCombinatorialPort.Iterator - Class in cc.redberry.combinatorics
-
- IntCompositions - Class in cc.redberry.combinatorics
-
Iterator over all compositions of specified integer into N parts.
- IntCompositions(int, int) - Constructor for class cc.redberry.combinatorics.IntCompositions
-
- IntDistinctTuples - Class in cc.redberry.combinatorics
-
Iterator over all distinct N-tuples, which can be chosen from N sets of integers.
- IntDistinctTuples(int[]...) - Constructor for class cc.redberry.combinatorics.IntDistinctTuples
-
Create iterator over distinct tuples formed from the specified arrays (each set will be sorted in place)
- IntPermutations - Class in cc.redberry.combinatorics
-
Iterator over all possible permutations.
- IntPermutations(int) - Constructor for class cc.redberry.combinatorics.IntPermutations
-
Construct iterator over all permutations with specified dimension starting with identity.
- IntPermutations(int[]) - Constructor for class cc.redberry.combinatorics.IntPermutations
-
Construct iterator over permutations with specified permutation at the start.
- IntPermutationsWithPriority - Class in cc.redberry.combinatorics
-
Iterator over all possible permutations of specified that allows to adjust the "niceness" of particular permutations,
such they will appear earlier in the iteration if iterator was reset via
IntPermutationsWithPriority.reset().
- IntPermutationsWithPriority(int) - Constructor for class cc.redberry.combinatorics.IntPermutationsWithPriority
-
- IntPermutationsWithPriority(int[]) - Constructor for class cc.redberry.combinatorics.IntPermutationsWithPriority
-
- IntTuples - Class in cc.redberry.combinatorics
-
Iterator over all N-tuples (not necessary to be distinct), which can be chosen from N arrays of integers of
the form arrayi = [0, 1, 2, ..., Ki].
- IntTuples(int...) - Constructor for class cc.redberry.combinatorics.IntTuples
-
- iterator() - Method in interface cc.redberry.combinatorics.CombinatorialIterator
-
- Iterator(IntCombinatorialPort) - Constructor for class cc.redberry.combinatorics.IntCombinatorialPort.Iterator
-