Skip to content

Commit 8302e99

Browse files
committed
make docs more readable
1 parent 4e9be8f commit 8302e99

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

library/math/matrix_related/xor_basis_unordered.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#pragma once
22
//! https://codeforces.com/blog/entry/68953
33
//! 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
4+
//! properties:
5+
//! - shrink(v) == shrink(shrink(v))
6+
//! - for x in b: (bit_floor(x) & shrink(v)) == 0
7+
//! - for 0 <= i < j < sz(b): (bit_floor(b[i]) & b[j]) == 0
78
//! @time O(32)
89
//! @space O(32)
910
struct basis {

0 commit comments

Comments
 (0)