I try to modify the function next_combination_counts in boost/combination.hpp. This function enumerates all the combinations of size r of elements in the set {0, 1, . . . n -1 }, taken with repetition. For that it generates sequentially all possible vectors of "multiplicity" containing the degree of multiplicity associated to each of the n elt (and whose sum equals r)
Here is an example of application (given in (http://photon.poly.edu/~hbr/boost/combinations.html#combin_counts_ex) )
const int r = 5;
const int n = 3;
std::vector<int> multiplicities(n, 0);
multiplicities.back() = r;
int N = 0;
do {
++N;
std::cout << "[ " << multiplicities[0];
for (int j = 1; j < n; ++j) { std::cout << ", " << multiplicities[j]; }
std::cout << " ]" << std::endl;
} while (next_combination_counts(multiplicities.begin(), multiplicities.end()));
std::cout << "Found " << N << " combinations of size " << r
<< " with repetitions from a set of " << n << " elements." << std::endl;
here is the code of next_combination_counts
template <class BidirectionalIterator>
bool
next_combination_counts(BidirectionalIterator first,
BidirectionalIterator last)
{
BidirectionalIterator current = last;
while (current != first && *(--current) == 0) {
}
if (current == first) {
if (first != last && *first != 0)
std::iter_swap(--last, first);
return false;
}
--(*current);
std::iter_swap(--last, current);
++(*(--current));
return true;
}
I would like to modify this function to generate the set of combinations with repetitions and for which multiplicity does not contains more than a given threshold t of consecutive zero between two non-zero elements.
Here is an example with r=3 and n=5 and t=1:
the combination [1,2,3] (multplicites=[0,1,1,1,0]) is correct
the combination [1,2,4] (multplicites=[0,1,1,0,1]) is correct
the combination [1,1,4] (multplicites=[0,2,0,0,1]) is not correct as multiplicities contains more than 1 consecutive 0 (or in other terms, the combination contains indices having a distance greater than 2).
note that the combination [3,4,4] (multplicites=[0,0,0,1,2]) is correct (the 3 zero are not contained between non-zero elements).
I tried to modify next_combination_counts to do this job but I did not manage. If somebody has any hint/solution/alternatives it will grealty help me. My goal is to run the procedure with large r and n so I cannot just discard incorrectly generated permutations.