Improved branch compilation
This commit is contained in:
parent
6aad74d6dd
commit
ee16774fe7
9 changed files with 160 additions and 113 deletions
|
@ -25,31 +25,15 @@ main() {
|
|||
exit(1)
|
||||
}
|
||||
|
||||
if x >= 1 {
|
||||
if x >= 1 || 1 <= x {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if 1 <= x {
|
||||
if x == inc(x) || x == dec(x) {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if x == inc(x) {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if x == dec(x) {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if inc(0) == x {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if dec(0) == x {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if inc(x) == dec(x) {
|
||||
if inc(0) == x || dec(0) == x || inc(x) == dec(x) {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue