We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e9be8f commit 8302e99Copy full SHA for 8302e99
library/math/matrix_related/xor_basis_unordered.hpp
@@ -1,9 +1,10 @@
1
#pragma once
2
//! https://codeforces.com/blog/entry/68953
3
//! https://codeforces.com/blog/entry/100066?#comment-887897
4
-//! b.shrink(v) == b.shrink(b.shrink(v))
5
-//! for x in b: (bit_floor(x)&b.shrink(v))==0
6
-//! for 0<=i<j<sz(b): (bit_floor(b[i])&b[j])==0
+//! properties:
+//! - shrink(v) == shrink(shrink(v))
+//! - for x in b: (bit_floor(x) & shrink(v)) == 0
7
+//! - for 0 <= i < j < sz(b): (bit_floor(b[i]) & b[j]) == 0
8
//! @time O(32)
9
//! @space O(32)
10
struct basis {
0 commit comments