Simplified branch tests
This commit is contained in:
parent
1c4d2d4f88
commit
69f70b5b2f
1 changed files with 3 additions and 5 deletions
|
@ -33,11 +33,9 @@ main() {
|
||||||
exit(1)
|
exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
if x != x || x != x || x != x || x == x || x != x {
|
if (x == x && x != x || x == x && x == x) && (x == x && x == x || x == x && x != x) {
|
||||||
if x + 1 == inc(x) && x - 1 == dec(x) && x == dec(inc(x)) {
|
if (x != x || x == x) && (x != x || x != x) || (x == x || x != x) && (x != x || x == x) {
|
||||||
if (x == x && x != x || x == x && x == x) && (x == x && x == x || x == x && x != x) {
|
exit(0)
|
||||||
exit(0)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue