Skip to content

Commit 3f5ad92

Browse files
committed
fix tle
1 parent f72daac commit 3f5ad92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/library_checker_aizu_tests/handmade_tests/xor_basis_walk.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ vector<bitset<B>> get_all(const vector<bitset<B>>& basis) {
2121
}
2222
int main() {
2323
cin.tie(0)->sync_with_stdio(0);
24-
for (int num_tests = 0; num_tests < 1000; num_tests++) {
24+
for (int num_tests = 0; num_tests < 100; num_tests++) {
2525
xor_basis<B> b;
26-
int n = rnd(1, 18);
26+
int n = rnd(1, 16);
2727
vector<bitset<B>> naive_basis;
2828
for (int i = 0; i < n; i++) {
2929
bitset<B> val = rnd(0, (1 << n) - 1);

0 commit comments

Comments
 (0)