bvector: unranking fixed
This commit is contained in:
parent
3f73ba54c4
commit
456718e301
|
@ -248,7 +248,7 @@ void bvector::colex_unrank (bvector&res, uint n, uint k) const
|
||||||
* halving the search interval as usual.
|
* halving the search interval as usual.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
uint p, a = i, b = n;
|
uint p, a = i, b = n + 1;
|
||||||
while (a < b) {
|
while (a < b) {
|
||||||
p = (a + b) / 2;
|
p = (a + b) / 2;
|
||||||
|
|
||||||
|
@ -262,8 +262,8 @@ void bvector::colex_unrank (bvector&res, uint n, uint k) const
|
||||||
mpz_sub (r, t2, t);
|
mpz_sub (r, t2, t);
|
||||||
|
|
||||||
//overflow protection (result's wrong anyway now)
|
//overflow protection (result's wrong anyway now)
|
||||||
if (p > n) continue;
|
if (b > n) continue;
|
||||||
res[p - 1] = 1;
|
res[b - 1] = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
mpz_clear (r);
|
mpz_clear (r);
|
||||||
|
|
Loading…
Reference in a new issue