We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f72daac commit 3f5ad92Copy full SHA for 3f5ad92
tests/library_checker_aizu_tests/handmade_tests/xor_basis_walk.test.cpp
@@ -21,9 +21,9 @@ vector<bitset<B>> get_all(const vector<bitset<B>>& basis) {
21
}
22
int main() {
23
cin.tie(0)->sync_with_stdio(0);
24
- for (int num_tests = 0; num_tests < 1000; num_tests++) {
+ for (int num_tests = 0; num_tests < 100; num_tests++) {
25
xor_basis<B> b;
26
- int n = rnd(1, 18);
+ int n = rnd(1, 16);
27
vector<bitset<B>> naive_basis;
28
for (int i = 0; i < n; i++) {
29
bitset<B> val = rnd(0, (1 << n) - 1);
0 commit comments