We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e9e30d commit 504ae7dCopy full SHA for 504ae7d
tests/library_checker_aizu_tests/handmade_tests/xor_basis_walk.test.cpp
@@ -30,6 +30,7 @@ int main() {
30
if (b.insert(val)) naive_basis.push_back(val);
31
assert(b.npivot + b.nfree == i + 1);
32
}
33
+ assert(ssize(naive_basis) == b.npivot);
34
vector<bitset<B>> fast_basis;
35
for (int i = 0; i < B; i++)
36
if (b.basis[i][i]) fast_basis.push_back(b.basis[i]);
0 commit comments