Skip to content

Commit 997bb54

Browse files
radom change
1 parent 450b5d4 commit 997bb54

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

content/numerical/FastSubsetTransform.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void FST(vi& a, bool inv) {
2727
}
2828
}
2929
if (mode_global == mode_xor) /// exclude-line
30-
if (inv) for (int& x : a) x /= sz(a); // XOR only
30+
if (inv) for (int& x : a) x /= sz(a); // XOR only
3131
}
3232
vi conv(vi a, vi b) {
3333
FST(a, 0); FST(b, 0);

stress-tests/numerical/FastSubsetTransform.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,10 @@ int main() {
6262

6363
rep(i, 1 << k) {
6464
int bruted = singleST(a, i)[2];
65-
if (aTr[i] != bruted) {
66-
deb(a, aTr, i, bruted);
67-
}
6865
assert(bruted == aTr[i]);
6966
}
7067
rep(i, 1 << k) {
7168
int bruted = singleST(aTr, i)[3];
72-
if (a[i] != bruted) {
73-
deb(a, aTr, i, bruted);
74-
}
7569
assert(bruted == a[i]);
7670
}
7771
}

0 commit comments

Comments
 (0)