From 456718e3010ba84aa3c6c7410a64cd4a1fb51bb6 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Fri, 17 May 2013 15:18:25 +0200 Subject: [PATCH] bvector: unranking fixed --- src/bvector.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bvector.cpp b/src/bvector.cpp index e044e18..f7e03c3 100644 --- a/src/bvector.cpp +++ b/src/bvector.cpp @@ -248,7 +248,7 @@ void bvector::colex_unrank (bvector&res, uint n, uint k) const * halving the search interval as usual. */ - uint p, a = i, b = n; + uint p, a = i, b = n + 1; while (a < b) { p = (a + b) / 2; @@ -262,8 +262,8 @@ void bvector::colex_unrank (bvector&res, uint n, uint k) const mpz_sub (r, t2, t); //overflow protection (result's wrong anyway now) - if (p > n) continue; - res[p - 1] = 1; + if (b > n) continue; + res[b - 1] = 1; } mpz_clear (r);