0 JBC
↳1 JBC2FIG (⇐)
↳2 FIGraph
↳3 FIGtoITRSProof (⇐)
↳4 ITRS
↳5 ITRStoIDPProof (⇔)
↳6 IDP
↳7 UsableRulesProof (⇔)
↳8 IDP
↳9 IDPNonInfProof (⇐)
↳10 AND
↳11 IDP
↳12 IDependencyGraphProof (⇔)
↳13 IDP
↳14 IDPNonInfProof (⇐)
↳15 AND
↳16 IDP
↳17 IDependencyGraphProof (⇔)
↳18 TRUE
↳19 IDP
↳20 IDependencyGraphProof (⇔)
↳21 TRUE
↳22 IDP
↳23 IDependencyGraphProof (⇔)
↳24 IDP
↳25 IDPNonInfProof (⇐)
↳26 AND
↳27 IDP
↳28 IDependencyGraphProof (⇔)
↳29 TRUE
↳30 IDP
↳31 IDependencyGraphProof (⇔)
↳32 TRUE
/**
* Example taken from "A Term Rewriting Approach to the Automated Termination
* Analysis of Imperative Programs" (http://www.cs.unm.edu/~spf/papers/2009-02.pdf)
* and converted to Java.
*/
public class PastaB17 {
public static void main(String[] args) {
Random.args = args;
int x = Random.random();
int y = Random.random();
int z = Random.random();
while (x > z) {
while (y > z) {
y--;
}
x--;
}
}
}
public class Random {
static String[] args;
static int index = 0;
public static int random() {
String string = args[index];
index++;
return string.length();
}
}
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer, Boolean
(0) -> (1), if ((i8[0] →* i8[1])∧(i56[0] →* i56[1])∧(i23[0] > i56[0] →* TRUE)∧(i23[0] →* i23[1]))
(1) -> (0), if ((i8[1] →* i8[0])∧(i23[1] + -1 →* i23[0])∧(i56[1] →* i56[0]))
(1) -> (4), if ((i23[1] + -1 →* i23[4])∧(i56[1] →* i56[4])∧(i8[1] →* i8[4]))
(2) -> (3), if ((i23[2] > i56[2] && i8[2] > i56[2] →* TRUE)∧(i23[2] →* i23[3])∧(i56[2] →* i56[3])∧(i8[2] →* i8[3]))
(3) -> (0), if ((i8[3] →* i8[0])∧(i23[3] + -1 →* i23[0])∧(i56[3] →* i56[0]))
(3) -> (4), if ((i23[3] + -1 →* i23[4])∧(i56[3] →* i56[4])∧(i8[3] →* i8[4]))
(4) -> (5), if ((i8[4] →* i8[5])∧(i23[4] <= i56[4] →* TRUE)∧(i56[4] →* i56[5])∧(i23[4] →* i23[5]))
(5) -> (2), if ((i56[5] →* i56[2])∧(i23[5] →* i23[2])∧(i8[5] + -1 →* i8[2]))
(5) -> (6), if ((i23[5] →* i23[6])∧(i8[5] + -1 →* i8[6])∧(i56[5] →* i56[6]))
(6) -> (7), if ((i23[6] <= i56[6] && i8[6] > i56[6] →* TRUE)∧(i56[6] →* i56[7])∧(i23[6] →* i23[7])∧(i8[6] →* i8[7]))
(7) -> (2), if ((i56[7] →* i56[2])∧(i8[7] + -1 →* i8[2])∧(i23[7] →* i23[2]))
(7) -> (6), if ((i8[7] + -1 →* i8[6])∧(i56[7] →* i56[6])∧(i23[7] →* i23[6]))
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer, Boolean
(0) -> (1), if ((i8[0] →* i8[1])∧(i56[0] →* i56[1])∧(i23[0] > i56[0] →* TRUE)∧(i23[0] →* i23[1]))
(1) -> (0), if ((i8[1] →* i8[0])∧(i23[1] + -1 →* i23[0])∧(i56[1] →* i56[0]))
(1) -> (4), if ((i23[1] + -1 →* i23[4])∧(i56[1] →* i56[4])∧(i8[1] →* i8[4]))
(2) -> (3), if ((i23[2] > i56[2] && i8[2] > i56[2] →* TRUE)∧(i23[2] →* i23[3])∧(i56[2] →* i56[3])∧(i8[2] →* i8[3]))
(3) -> (0), if ((i8[3] →* i8[0])∧(i23[3] + -1 →* i23[0])∧(i56[3] →* i56[0]))
(3) -> (4), if ((i23[3] + -1 →* i23[4])∧(i56[3] →* i56[4])∧(i8[3] →* i8[4]))
(4) -> (5), if ((i8[4] →* i8[5])∧(i23[4] <= i56[4] →* TRUE)∧(i56[4] →* i56[5])∧(i23[4] →* i23[5]))
(5) -> (2), if ((i56[5] →* i56[2])∧(i23[5] →* i23[2])∧(i8[5] + -1 →* i8[2]))
(5) -> (6), if ((i23[5] →* i23[6])∧(i8[5] + -1 →* i8[6])∧(i56[5] →* i56[6]))
(6) -> (7), if ((i23[6] <= i56[6] && i8[6] > i56[6] →* TRUE)∧(i56[6] →* i56[7])∧(i23[6] →* i23[7])∧(i8[6] →* i8[7]))
(7) -> (2), if ((i56[7] →* i56[2])∧(i8[7] + -1 →* i8[2])∧(i23[7] →* i23[2]))
(7) -> (6), if ((i8[7] + -1 →* i8[6])∧(i56[7] →* i56[6])∧(i23[7] →* i23[6]))
(1) (i8[0]=i8[1]∧i56[0]=i56[1]∧>(i23[0], i56[0])=TRUE∧i23[0]=i23[1] ⇒ LOAD1082(i8[0], i23[0], i56[0])≥NonInfC∧LOAD1082(i8[0], i23[0], i56[0])≥COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])∧(UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥))
(2) (>(i23[0], i56[0])=TRUE ⇒ LOAD1082(i8[0], i23[0], i56[0])≥NonInfC∧LOAD1082(i8[0], i23[0], i56[0])≥COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])∧(UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥))
(3) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[(-1)bni_34 + (-1)Bound*bni_34] + [(-1)bni_34]i56[0] + [bni_34]i8[0] ≥ 0∧[(-1)bso_35] ≥ 0)
(4) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[(-1)bni_34 + (-1)Bound*bni_34] + [(-1)bni_34]i56[0] + [bni_34]i8[0] ≥ 0∧[(-1)bso_35] ≥ 0)
(5) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[(-1)bni_34 + (-1)Bound*bni_34] + [(-1)bni_34]i56[0] + [bni_34]i8[0] ≥ 0∧[(-1)bso_35] ≥ 0)
(6) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[bni_34] = 0∧[(-1)bni_34 + (-1)Bound*bni_34] + [(-1)bni_34]i56[0] ≥ 0∧0 = 0∧[(-1)bso_35] ≥ 0)
(7) (i23[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[bni_34] = 0∧[(-1)bni_34 + (-1)Bound*bni_34] + [(-1)bni_34]i56[0] ≥ 0∧0 = 0∧[(-1)bso_35] ≥ 0)
(8) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[bni_34] = 0∧[(-1)bni_34 + (-1)Bound*bni_34] + [(-1)bni_34]i56[0] ≥ 0∧0 = 0∧[(-1)bso_35] ≥ 0)
(9) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[bni_34] = 0∧[(-1)bni_34 + (-1)Bound*bni_34] + [bni_34]i56[0] ≥ 0∧0 = 0∧[(-1)bso_35] ≥ 0)
(10) (i8[0]=i8[1]∧i56[0]=i56[1]∧>(i23[0], i56[0])=TRUE∧i23[0]=i23[1]∧i8[1]=i8[0]1∧+(i23[1], -1)=i23[0]1∧i56[1]=i56[0]1 ⇒ COND_LOAD1082(TRUE, i8[1], i23[1], i56[1])≥NonInfC∧COND_LOAD1082(TRUE, i8[1], i23[1], i56[1])≥LOAD1082(i8[1], +(i23[1], -1), i56[1])∧(UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥))
(11) (>(i23[0], i56[0])=TRUE ⇒ COND_LOAD1082(TRUE, i8[0], i23[0], i56[0])≥NonInfC∧COND_LOAD1082(TRUE, i8[0], i23[0], i56[0])≥LOAD1082(i8[0], +(i23[0], -1), i56[0])∧(UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥))
(12) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] + [bni_36]i8[0] ≥ 0∧[(-1)bso_37] ≥ 0)
(13) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] + [bni_36]i8[0] ≥ 0∧[(-1)bso_37] ≥ 0)
(14) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] + [bni_36]i8[0] ≥ 0∧[(-1)bso_37] ≥ 0)
(15) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[bni_36] = 0∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] ≥ 0∧0 = 0∧[(-1)bso_37] ≥ 0)
(16) (i23[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[bni_36] = 0∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] ≥ 0∧0 = 0∧[(-1)bso_37] ≥ 0)
(17) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[bni_36] = 0∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] ≥ 0∧0 = 0∧[(-1)bso_37] ≥ 0)
(18) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[bni_36] = 0∧[(-1)bni_36 + (-1)Bound*bni_36] + [bni_36]i56[0] ≥ 0∧0 = 0∧[(-1)bso_37] ≥ 0)
(19) (i8[0]=i8[1]∧i56[0]=i56[1]∧>(i23[0], i56[0])=TRUE∧i23[0]=i23[1]∧+(i23[1], -1)=i23[4]∧i56[1]=i56[4]∧i8[1]=i8[4] ⇒ COND_LOAD1082(TRUE, i8[1], i23[1], i56[1])≥NonInfC∧COND_LOAD1082(TRUE, i8[1], i23[1], i56[1])≥LOAD1082(i8[1], +(i23[1], -1), i56[1])∧(UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥))
(20) (>(i23[0], i56[0])=TRUE ⇒ COND_LOAD1082(TRUE, i8[0], i23[0], i56[0])≥NonInfC∧COND_LOAD1082(TRUE, i8[0], i23[0], i56[0])≥LOAD1082(i8[0], +(i23[0], -1), i56[0])∧(UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥))
(21) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] + [bni_36]i8[0] ≥ 0∧[(-1)bso_37] ≥ 0)
(22) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] + [bni_36]i8[0] ≥ 0∧[(-1)bso_37] ≥ 0)
(23) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] + [bni_36]i8[0] ≥ 0∧[(-1)bso_37] ≥ 0)
(24) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[bni_36] = 0∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] ≥ 0∧0 = 0∧[(-1)bso_37] ≥ 0)
(25) (i23[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[bni_36] = 0∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] ≥ 0∧0 = 0∧[(-1)bso_37] ≥ 0)
(26) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[bni_36] = 0∧[(-1)bni_36 + (-1)Bound*bni_36] + [(-1)bni_36]i56[0] ≥ 0∧0 = 0∧[(-1)bso_37] ≥ 0)
(27) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[bni_36] = 0∧[(-1)bni_36 + (-1)Bound*bni_36] + [bni_36]i56[0] ≥ 0∧0 = 0∧[(-1)bso_37] ≥ 0)
(28) (&&(>(i23[2], i56[2]), >(i8[2], i56[2]))=TRUE∧i23[2]=i23[3]∧i56[2]=i56[3]∧i8[2]=i8[3] ⇒ LOAD1003(i8[2], i23[2], i56[2])≥NonInfC∧LOAD1003(i8[2], i23[2], i56[2])≥COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])∧(UIncreasing(COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])), ≥))
(29) (>(i23[2], i56[2])=TRUE∧>(i8[2], i56[2])=TRUE ⇒ LOAD1003(i8[2], i23[2], i56[2])≥NonInfC∧LOAD1003(i8[2], i23[2], i56[2])≥COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])∧(UIncreasing(COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])), ≥))
(30) (i23[2] + [-1] + [-1]i56[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])), ≥)∧[(-1)bni_38 + (-1)Bound*bni_38] + [(-1)bni_38]i56[2] + [bni_38]i8[2] ≥ 0∧[(-1)bso_39] ≥ 0)
(31) (i23[2] + [-1] + [-1]i56[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])), ≥)∧[(-1)bni_38 + (-1)Bound*bni_38] + [(-1)bni_38]i56[2] + [bni_38]i8[2] ≥ 0∧[(-1)bso_39] ≥ 0)
(32) (i23[2] + [-1] + [-1]i56[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])), ≥)∧[(-1)bni_38 + (-1)Bound*bni_38] + [(-1)bni_38]i56[2] + [bni_38]i8[2] ≥ 0∧[(-1)bso_39] ≥ 0)
(33) (i23[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])), ≥)∧[(-1)bni_38 + (-1)Bound*bni_38] + [(-1)bni_38]i56[2] + [bni_38]i8[2] ≥ 0∧[(-1)bso_39] ≥ 0)
(34) (i23[2] ≥ 0∧i56[2] ≥ 0 ⇒ (UIncreasing(COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])), ≥)∧[(-1)Bound*bni_38] + [bni_38]i56[2] ≥ 0∧[(-1)bso_39] ≥ 0)
(35) (i23[2] ≥ 0∧i56[2] ≥ 0∧i8[2] ≥ 0 ⇒ (UIncreasing(COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])), ≥)∧[(-1)Bound*bni_38] + [bni_38]i56[2] ≥ 0∧[(-1)bso_39] ≥ 0)
(36) (i23[2] ≥ 0∧i56[2] ≥ 0∧i8[2] ≥ 0 ⇒ (UIncreasing(COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])), ≥)∧[(-1)Bound*bni_38] + [bni_38]i56[2] ≥ 0∧[(-1)bso_39] ≥ 0)
(37) (&&(>(i23[2], i56[2]), >(i8[2], i56[2]))=TRUE∧i23[2]=i23[3]∧i56[2]=i56[3]∧i8[2]=i8[3]∧i8[3]=i8[0]∧+(i23[3], -1)=i23[0]∧i56[3]=i56[0] ⇒ COND_LOAD1003(TRUE, i8[3], i23[3], i56[3])≥NonInfC∧COND_LOAD1003(TRUE, i8[3], i23[3], i56[3])≥LOAD1082(i8[3], +(i23[3], -1), i56[3])∧(UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥))
(38) (>(i23[2], i56[2])=TRUE∧>(i8[2], i56[2])=TRUE ⇒ COND_LOAD1003(TRUE, i8[2], i23[2], i56[2])≥NonInfC∧COND_LOAD1003(TRUE, i8[2], i23[2], i56[2])≥LOAD1082(i8[2], +(i23[2], -1), i56[2])∧(UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥))
(39) (i23[2] + [-1] + [-1]i56[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)bni_40 + (-1)Bound*bni_40] + [(-1)bni_40]i56[2] + [bni_40]i8[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(40) (i23[2] + [-1] + [-1]i56[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)bni_40 + (-1)Bound*bni_40] + [(-1)bni_40]i56[2] + [bni_40]i8[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(41) (i23[2] + [-1] + [-1]i56[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)bni_40 + (-1)Bound*bni_40] + [(-1)bni_40]i56[2] + [bni_40]i8[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(42) (i23[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)bni_40 + (-1)Bound*bni_40] + [(-1)bni_40]i56[2] + [bni_40]i8[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(43) (i23[2] ≥ 0∧i56[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)Bound*bni_40] + [bni_40]i56[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(44) (i23[2] ≥ 0∧i56[2] ≥ 0∧i8[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)Bound*bni_40] + [bni_40]i56[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(45) (i23[2] ≥ 0∧i56[2] ≥ 0∧i8[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)Bound*bni_40] + [bni_40]i56[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(46) (&&(>(i23[2], i56[2]), >(i8[2], i56[2]))=TRUE∧i23[2]=i23[3]∧i56[2]=i56[3]∧i8[2]=i8[3]∧+(i23[3], -1)=i23[4]∧i56[3]=i56[4]∧i8[3]=i8[4] ⇒ COND_LOAD1003(TRUE, i8[3], i23[3], i56[3])≥NonInfC∧COND_LOAD1003(TRUE, i8[3], i23[3], i56[3])≥LOAD1082(i8[3], +(i23[3], -1), i56[3])∧(UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥))
(47) (>(i23[2], i56[2])=TRUE∧>(i8[2], i56[2])=TRUE ⇒ COND_LOAD1003(TRUE, i8[2], i23[2], i56[2])≥NonInfC∧COND_LOAD1003(TRUE, i8[2], i23[2], i56[2])≥LOAD1082(i8[2], +(i23[2], -1), i56[2])∧(UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥))
(48) (i23[2] + [-1] + [-1]i56[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)bni_40 + (-1)Bound*bni_40] + [(-1)bni_40]i56[2] + [bni_40]i8[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(49) (i23[2] + [-1] + [-1]i56[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)bni_40 + (-1)Bound*bni_40] + [(-1)bni_40]i56[2] + [bni_40]i8[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(50) (i23[2] + [-1] + [-1]i56[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)bni_40 + (-1)Bound*bni_40] + [(-1)bni_40]i56[2] + [bni_40]i8[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(51) (i23[2] ≥ 0∧i8[2] + [-1] + [-1]i56[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)bni_40 + (-1)Bound*bni_40] + [(-1)bni_40]i56[2] + [bni_40]i8[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(52) (i23[2] ≥ 0∧i56[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)Bound*bni_40] + [bni_40]i56[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(53) (i23[2] ≥ 0∧i56[2] ≥ 0∧i8[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)Bound*bni_40] + [bni_40]i56[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(54) (i23[2] ≥ 0∧i56[2] ≥ 0∧i8[2] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[3], +(i23[3], -1), i56[3])), ≥)∧[(-1)Bound*bni_40] + [bni_40]i56[2] ≥ 0∧[(-1)bso_41] ≥ 0)
(55) (i8[4]=i8[5]∧<=(i23[4], i56[4])=TRUE∧i56[4]=i56[5]∧i23[4]=i23[5] ⇒ LOAD1082(i8[4], i23[4], i56[4])≥NonInfC∧LOAD1082(i8[4], i23[4], i56[4])≥COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])∧(UIncreasing(COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])), ≥))
(56) (<=(i23[4], i56[4])=TRUE ⇒ LOAD1082(i8[4], i23[4], i56[4])≥NonInfC∧LOAD1082(i8[4], i23[4], i56[4])≥COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])∧(UIncreasing(COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])), ≥))
(57) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])), ≥)∧[(-1)bni_42 + (-1)Bound*bni_42] + [(-1)bni_42]i56[4] + [bni_42]i8[4] ≥ 0∧[(-1)bso_43] ≥ 0)
(58) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])), ≥)∧[(-1)bni_42 + (-1)Bound*bni_42] + [(-1)bni_42]i56[4] + [bni_42]i8[4] ≥ 0∧[(-1)bso_43] ≥ 0)
(59) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])), ≥)∧[(-1)bni_42 + (-1)Bound*bni_42] + [(-1)bni_42]i56[4] + [bni_42]i8[4] ≥ 0∧[(-1)bso_43] ≥ 0)
(60) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])), ≥)∧[bni_42] = 0∧[(-1)bni_42 + (-1)Bound*bni_42] + [(-1)bni_42]i56[4] ≥ 0∧0 = 0∧[(-1)bso_43] ≥ 0)
(61) (i56[4] ≥ 0 ⇒ (UIncreasing(COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])), ≥)∧[bni_42] = 0∧[(-1)bni_42 + (-1)Bound*bni_42] + [(-1)bni_42]i23[4] + [(-1)bni_42]i56[4] ≥ 0∧0 = 0∧[(-1)bso_43] ≥ 0)
(62) (i56[4] ≥ 0∧i23[4] ≥ 0 ⇒ (UIncreasing(COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])), ≥)∧[bni_42] = 0∧[(-1)bni_42 + (-1)Bound*bni_42] + [(-1)bni_42]i23[4] + [(-1)bni_42]i56[4] ≥ 0∧0 = 0∧[(-1)bso_43] ≥ 0)
(63) (i56[4] ≥ 0∧i23[4] ≥ 0 ⇒ (UIncreasing(COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])), ≥)∧[bni_42] = 0∧[(-1)bni_42 + (-1)Bound*bni_42] + [bni_42]i23[4] + [(-1)bni_42]i56[4] ≥ 0∧0 = 0∧[(-1)bso_43] ≥ 0)
(64) (i8[4]=i8[5]∧<=(i23[4], i56[4])=TRUE∧i56[4]=i56[5]∧i23[4]=i23[5]∧i56[5]=i56[2]∧i23[5]=i23[2]∧+(i8[5], -1)=i8[2] ⇒ COND_LOAD10821(TRUE, i8[5], i23[5], i56[5])≥NonInfC∧COND_LOAD10821(TRUE, i8[5], i23[5], i56[5])≥LOAD1003(+(i8[5], -1), i23[5], i56[5])∧(UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥))
(65) (<=(i23[4], i56[4])=TRUE ⇒ COND_LOAD10821(TRUE, i8[4], i23[4], i56[4])≥NonInfC∧COND_LOAD10821(TRUE, i8[4], i23[4], i56[4])≥LOAD1003(+(i8[4], -1), i23[4], i56[4])∧(UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥))
(66) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i56[4] + [bni_44]i8[4] ≥ 0∧[1 + (-1)bso_45] ≥ 0)
(67) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i56[4] + [bni_44]i8[4] ≥ 0∧[1 + (-1)bso_45] ≥ 0)
(68) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i56[4] + [bni_44]i8[4] ≥ 0∧[1 + (-1)bso_45] ≥ 0)
(69) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[bni_44] = 0∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i56[4] ≥ 0∧0 = 0∧[1 + (-1)bso_45] ≥ 0)
(70) (i56[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[bni_44] = 0∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i23[4] + [(-1)bni_44]i56[4] ≥ 0∧0 = 0∧[1 + (-1)bso_45] ≥ 0)
(71) (i56[4] ≥ 0∧i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[bni_44] = 0∧[(-1)bni_44 + (-1)Bound*bni_44] + [bni_44]i23[4] + [(-1)bni_44]i56[4] ≥ 0∧0 = 0∧[1 + (-1)bso_45] ≥ 0)
(72) (i56[4] ≥ 0∧i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[bni_44] = 0∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i23[4] + [(-1)bni_44]i56[4] ≥ 0∧0 = 0∧[1 + (-1)bso_45] ≥ 0)
(73) (i8[4]=i8[5]∧<=(i23[4], i56[4])=TRUE∧i56[4]=i56[5]∧i23[4]=i23[5]∧i23[5]=i23[6]∧+(i8[5], -1)=i8[6]∧i56[5]=i56[6] ⇒ COND_LOAD10821(TRUE, i8[5], i23[5], i56[5])≥NonInfC∧COND_LOAD10821(TRUE, i8[5], i23[5], i56[5])≥LOAD1003(+(i8[5], -1), i23[5], i56[5])∧(UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥))
(74) (<=(i23[4], i56[4])=TRUE ⇒ COND_LOAD10821(TRUE, i8[4], i23[4], i56[4])≥NonInfC∧COND_LOAD10821(TRUE, i8[4], i23[4], i56[4])≥LOAD1003(+(i8[4], -1), i23[4], i56[4])∧(UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥))
(75) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i56[4] + [bni_44]i8[4] ≥ 0∧[1 + (-1)bso_45] ≥ 0)
(76) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i56[4] + [bni_44]i8[4] ≥ 0∧[1 + (-1)bso_45] ≥ 0)
(77) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i56[4] + [bni_44]i8[4] ≥ 0∧[1 + (-1)bso_45] ≥ 0)
(78) (i56[4] + [-1]i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[bni_44] = 0∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i56[4] ≥ 0∧0 = 0∧[1 + (-1)bso_45] ≥ 0)
(79) (i56[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[bni_44] = 0∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i23[4] + [(-1)bni_44]i56[4] ≥ 0∧0 = 0∧[1 + (-1)bso_45] ≥ 0)
(80) (i56[4] ≥ 0∧i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[bni_44] = 0∧[(-1)bni_44 + (-1)Bound*bni_44] + [bni_44]i23[4] + [(-1)bni_44]i56[4] ≥ 0∧0 = 0∧[1 + (-1)bso_45] ≥ 0)
(81) (i56[4] ≥ 0∧i23[4] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[5], -1), i23[5], i56[5])), ≥)∧[bni_44] = 0∧[(-1)bni_44 + (-1)Bound*bni_44] + [(-1)bni_44]i23[4] + [(-1)bni_44]i56[4] ≥ 0∧0 = 0∧[1 + (-1)bso_45] ≥ 0)
(82) (&&(<=(i23[6], i56[6]), >(i8[6], i56[6]))=TRUE∧i56[6]=i56[7]∧i23[6]=i23[7]∧i8[6]=i8[7] ⇒ LOAD1003(i8[6], i23[6], i56[6])≥NonInfC∧LOAD1003(i8[6], i23[6], i56[6])≥COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])∧(UIncreasing(COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])), ≥))
(83) (<=(i23[6], i56[6])=TRUE∧>(i8[6], i56[6])=TRUE ⇒ LOAD1003(i8[6], i23[6], i56[6])≥NonInfC∧LOAD1003(i8[6], i23[6], i56[6])≥COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])∧(UIncreasing(COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])), ≥))
(84) (i56[6] + [-1]i23[6] ≥ 0∧i8[6] + [-1] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])), ≥)∧[(-1)bni_46 + (-1)Bound*bni_46] + [(-1)bni_46]i56[6] + [bni_46]i8[6] ≥ 0∧[(-1)bso_47] ≥ 0)
(85) (i56[6] + [-1]i23[6] ≥ 0∧i8[6] + [-1] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])), ≥)∧[(-1)bni_46 + (-1)Bound*bni_46] + [(-1)bni_46]i56[6] + [bni_46]i8[6] ≥ 0∧[(-1)bso_47] ≥ 0)
(86) (i56[6] + [-1]i23[6] ≥ 0∧i8[6] + [-1] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])), ≥)∧[(-1)bni_46 + (-1)Bound*bni_46] + [(-1)bni_46]i56[6] + [bni_46]i8[6] ≥ 0∧[(-1)bso_47] ≥ 0)
(87) (i56[6] ≥ 0∧i8[6] + [-1] + [-1]i23[6] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])), ≥)∧[(-1)bni_46 + (-1)Bound*bni_46] + [(-1)bni_46]i23[6] + [(-1)bni_46]i56[6] + [bni_46]i8[6] ≥ 0∧[(-1)bso_47] ≥ 0)
(88) (i56[6] ≥ 0∧i23[6] ≥ 0 ⇒ (UIncreasing(COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])), ≥)∧[(-1)Bound*bni_46] + [bni_46]i23[6] ≥ 0∧[(-1)bso_47] ≥ 0)
(89) (i56[6] ≥ 0∧i23[6] ≥ 0∧i8[6] ≥ 0 ⇒ (UIncreasing(COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])), ≥)∧[(-1)Bound*bni_46] + [bni_46]i23[6] ≥ 0∧[(-1)bso_47] ≥ 0)
(90) (i56[6] ≥ 0∧i23[6] ≥ 0∧i8[6] ≥ 0 ⇒ (UIncreasing(COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])), ≥)∧[(-1)Bound*bni_46] + [bni_46]i23[6] ≥ 0∧[(-1)bso_47] ≥ 0)
(91) (&&(<=(i23[6], i56[6]), >(i8[6], i56[6]))=TRUE∧i56[6]=i56[7]∧i23[6]=i23[7]∧i8[6]=i8[7]∧i56[7]=i56[2]∧+(i8[7], -1)=i8[2]∧i23[7]=i23[2] ⇒ COND_LOAD10031(TRUE, i8[7], i23[7], i56[7])≥NonInfC∧COND_LOAD10031(TRUE, i8[7], i23[7], i56[7])≥LOAD1003(+(i8[7], -1), i23[7], i56[7])∧(UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥))
(92) (<=(i23[6], i56[6])=TRUE∧>(i8[6], i56[6])=TRUE ⇒ COND_LOAD10031(TRUE, i8[6], i23[6], i56[6])≥NonInfC∧COND_LOAD10031(TRUE, i8[6], i23[6], i56[6])≥LOAD1003(+(i8[6], -1), i23[6], i56[6])∧(UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥))
(93) (i56[6] + [-1]i23[6] ≥ 0∧i8[6] + [-1] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)bni_48 + (-1)Bound*bni_48] + [(-1)bni_48]i56[6] + [bni_48]i8[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(94) (i56[6] + [-1]i23[6] ≥ 0∧i8[6] + [-1] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)bni_48 + (-1)Bound*bni_48] + [(-1)bni_48]i56[6] + [bni_48]i8[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(95) (i56[6] + [-1]i23[6] ≥ 0∧i8[6] + [-1] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)bni_48 + (-1)Bound*bni_48] + [(-1)bni_48]i56[6] + [bni_48]i8[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(96) (i56[6] ≥ 0∧i8[6] + [-1] + [-1]i23[6] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)bni_48 + (-1)Bound*bni_48] + [(-1)bni_48]i23[6] + [(-1)bni_48]i56[6] + [bni_48]i8[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(97) (i56[6] ≥ 0∧i23[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)Bound*bni_48] + [bni_48]i23[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(98) (i56[6] ≥ 0∧i23[6] ≥ 0∧i8[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)Bound*bni_48] + [bni_48]i23[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(99) (i56[6] ≥ 0∧i23[6] ≥ 0∧i8[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)Bound*bni_48] + [bni_48]i23[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(100) (&&(<=(i23[6], i56[6]), >(i8[6], i56[6]))=TRUE∧i56[6]=i56[7]∧i23[6]=i23[7]∧i8[6]=i8[7]∧+(i8[7], -1)=i8[6]1∧i56[7]=i56[6]1∧i23[7]=i23[6]1 ⇒ COND_LOAD10031(TRUE, i8[7], i23[7], i56[7])≥NonInfC∧COND_LOAD10031(TRUE, i8[7], i23[7], i56[7])≥LOAD1003(+(i8[7], -1), i23[7], i56[7])∧(UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥))
(101) (<=(i23[6], i56[6])=TRUE∧>(i8[6], i56[6])=TRUE ⇒ COND_LOAD10031(TRUE, i8[6], i23[6], i56[6])≥NonInfC∧COND_LOAD10031(TRUE, i8[6], i23[6], i56[6])≥LOAD1003(+(i8[6], -1), i23[6], i56[6])∧(UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥))
(102) (i56[6] + [-1]i23[6] ≥ 0∧i8[6] + [-1] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)bni_48 + (-1)Bound*bni_48] + [(-1)bni_48]i56[6] + [bni_48]i8[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(103) (i56[6] + [-1]i23[6] ≥ 0∧i8[6] + [-1] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)bni_48 + (-1)Bound*bni_48] + [(-1)bni_48]i56[6] + [bni_48]i8[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(104) (i56[6] + [-1]i23[6] ≥ 0∧i8[6] + [-1] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)bni_48 + (-1)Bound*bni_48] + [(-1)bni_48]i56[6] + [bni_48]i8[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(105) (i56[6] ≥ 0∧i8[6] + [-1] + [-1]i23[6] + [-1]i56[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)bni_48 + (-1)Bound*bni_48] + [(-1)bni_48]i23[6] + [(-1)bni_48]i56[6] + [bni_48]i8[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(106) (i56[6] ≥ 0∧i23[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)Bound*bni_48] + [bni_48]i23[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(107) (i56[6] ≥ 0∧i23[6] ≥ 0∧i8[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)Bound*bni_48] + [bni_48]i23[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
(108) (i56[6] ≥ 0∧i23[6] ≥ 0∧i8[6] ≥ 0 ⇒ (UIncreasing(LOAD1003(+(i8[7], -1), i23[7], i56[7])), ≥)∧[(-1)Bound*bni_48] + [bni_48]i23[6] ≥ 0∧[1 + (-1)bso_49] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = [3]
POL(LOAD1082(x1, x2, x3)) = [-1] + [-1]x3 + x1
POL(COND_LOAD1082(x1, x2, x3, x4)) = [-1] + [-1]x4 + x2
POL(>(x1, x2)) = 0
POL(+(x1, x2)) = x1 + x2
POL(-1) = [-1]
POL(LOAD1003(x1, x2, x3)) = [-1] + [-1]x3 + x1
POL(COND_LOAD1003(x1, x2, x3, x4)) = [-1] + [-1]x4 + x2
POL(&&(x1, x2)) = [-1]
POL(COND_LOAD10821(x1, x2, x3, x4)) = [-1] + [-1]x4 + x2
POL(<=(x1, x2)) = [-1]
POL(COND_LOAD10031(x1, x2, x3, x4)) = [-1] + [-1]x4 + x2
COND_LOAD10821(TRUE, i8[5], i23[5], i56[5]) → LOAD1003(+(i8[5], -1), i23[5], i56[5])
COND_LOAD10031(TRUE, i8[7], i23[7], i56[7]) → LOAD1003(+(i8[7], -1), i23[7], i56[7])
LOAD1003(i8[2], i23[2], i56[2]) → COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])
COND_LOAD1003(TRUE, i8[3], i23[3], i56[3]) → LOAD1082(i8[3], +(i23[3], -1), i56[3])
LOAD1003(i8[6], i23[6], i56[6]) → COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])
COND_LOAD10031(TRUE, i8[7], i23[7], i56[7]) → LOAD1003(+(i8[7], -1), i23[7], i56[7])
LOAD1082(i8[0], i23[0], i56[0]) → COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])
COND_LOAD1082(TRUE, i8[1], i23[1], i56[1]) → LOAD1082(i8[1], +(i23[1], -1), i56[1])
LOAD1003(i8[2], i23[2], i56[2]) → COND_LOAD1003(&&(>(i23[2], i56[2]), >(i8[2], i56[2])), i8[2], i23[2], i56[2])
COND_LOAD1003(TRUE, i8[3], i23[3], i56[3]) → LOAD1082(i8[3], +(i23[3], -1), i56[3])
LOAD1082(i8[4], i23[4], i56[4]) → COND_LOAD10821(<=(i23[4], i56[4]), i8[4], i23[4], i56[4])
LOAD1003(i8[6], i23[6], i56[6]) → COND_LOAD10031(&&(<=(i23[6], i56[6]), >(i8[6], i56[6])), i8[6], i23[6], i56[6])
TRUE1 → &&(TRUE, TRUE)1
FALSE1 → &&(TRUE, FALSE)1
FALSE1 → &&(FALSE, TRUE)1
FALSE1 → &&(FALSE, FALSE)1
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer, Boolean
(1) -> (0), if ((i8[1] →* i8[0])∧(i23[1] + -1 →* i23[0])∧(i56[1] →* i56[0]))
(3) -> (0), if ((i8[3] →* i8[0])∧(i23[3] + -1 →* i23[0])∧(i56[3] →* i56[0]))
(0) -> (1), if ((i8[0] →* i8[1])∧(i56[0] →* i56[1])∧(i23[0] > i56[0] →* TRUE)∧(i23[0] →* i23[1]))
(2) -> (3), if ((i23[2] > i56[2] && i8[2] > i56[2] →* TRUE)∧(i23[2] →* i23[3])∧(i56[2] →* i56[3])∧(i8[2] →* i8[3]))
(1) -> (4), if ((i23[1] + -1 →* i23[4])∧(i56[1] →* i56[4])∧(i8[1] →* i8[4]))
(3) -> (4), if ((i23[3] + -1 →* i23[4])∧(i56[3] →* i56[4])∧(i8[3] →* i8[4]))
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
(1) -> (0), if ((i8[1] →* i8[0])∧(i23[1] + -1 →* i23[0])∧(i56[1] →* i56[0]))
(0) -> (1), if ((i8[0] →* i8[1])∧(i56[0] →* i56[1])∧(i23[0] > i56[0] →* TRUE)∧(i23[0] →* i23[1]))
(1) (i8[0]=i8[1]∧i56[0]=i56[1]∧>(i23[0], i56[0])=TRUE∧i23[0]=i23[1]∧i8[1]=i8[0]1∧+(i23[1], -1)=i23[0]1∧i56[1]=i56[0]1 ⇒ COND_LOAD1082(TRUE, i8[1], i23[1], i56[1])≥NonInfC∧COND_LOAD1082(TRUE, i8[1], i23[1], i56[1])≥LOAD1082(i8[1], +(i23[1], -1), i56[1])∧(UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥))
(2) (>(i23[0], i56[0])=TRUE ⇒ COND_LOAD1082(TRUE, i8[0], i23[0], i56[0])≥NonInfC∧COND_LOAD1082(TRUE, i8[0], i23[0], i56[0])≥LOAD1082(i8[0], +(i23[0], -1), i56[0])∧(UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥))
(3) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_13 + (-1)Bound*bni_13] + [(-1)bni_13]i56[0] + [bni_13]i23[0] ≥ 0∧[1 + (-1)bso_14] ≥ 0)
(4) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_13 + (-1)Bound*bni_13] + [(-1)bni_13]i56[0] + [bni_13]i23[0] ≥ 0∧[1 + (-1)bso_14] ≥ 0)
(5) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_13 + (-1)Bound*bni_13] + [(-1)bni_13]i56[0] + [bni_13]i23[0] ≥ 0∧[1 + (-1)bso_14] ≥ 0)
(6) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧0 = 0∧[(-1)bni_13 + (-1)Bound*bni_13] + [(-1)bni_13]i56[0] + [bni_13]i23[0] ≥ 0∧0 = 0∧[1 + (-1)bso_14] ≥ 0)
(7) (i23[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧0 = 0∧[(-1)Bound*bni_13] + [bni_13]i23[0] ≥ 0∧0 = 0∧[1 + (-1)bso_14] ≥ 0)
(8) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧0 = 0∧[(-1)Bound*bni_13] + [bni_13]i23[0] ≥ 0∧0 = 0∧[1 + (-1)bso_14] ≥ 0)
(9) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧0 = 0∧[(-1)Bound*bni_13] + [bni_13]i23[0] ≥ 0∧0 = 0∧[1 + (-1)bso_14] ≥ 0)
(10) (i8[0]=i8[1]∧i56[0]=i56[1]∧>(i23[0], i56[0])=TRUE∧i23[0]=i23[1] ⇒ LOAD1082(i8[0], i23[0], i56[0])≥NonInfC∧LOAD1082(i8[0], i23[0], i56[0])≥COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])∧(UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥))
(11) (>(i23[0], i56[0])=TRUE ⇒ LOAD1082(i8[0], i23[0], i56[0])≥NonInfC∧LOAD1082(i8[0], i23[0], i56[0])≥COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])∧(UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥))
(12) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[(-1)bni_15 + (-1)Bound*bni_15] + [(-1)bni_15]i56[0] + [bni_15]i23[0] ≥ 0∧[(-1)bso_16] ≥ 0)
(13) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[(-1)bni_15 + (-1)Bound*bni_15] + [(-1)bni_15]i56[0] + [bni_15]i23[0] ≥ 0∧[(-1)bso_16] ≥ 0)
(14) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[(-1)bni_15 + (-1)Bound*bni_15] + [(-1)bni_15]i56[0] + [bni_15]i23[0] ≥ 0∧[(-1)bso_16] ≥ 0)
(15) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧0 = 0∧[(-1)bni_15 + (-1)Bound*bni_15] + [(-1)bni_15]i56[0] + [bni_15]i23[0] ≥ 0∧0 = 0∧[(-1)bso_16] ≥ 0)
(16) (i23[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧0 = 0∧[(-1)Bound*bni_15] + [bni_15]i23[0] ≥ 0∧0 = 0∧[(-1)bso_16] ≥ 0)
(17) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧0 = 0∧[(-1)Bound*bni_15] + [bni_15]i23[0] ≥ 0∧0 = 0∧[(-1)bso_16] ≥ 0)
(18) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧0 = 0∧[(-1)Bound*bni_15] + [bni_15]i23[0] ≥ 0∧0 = 0∧[(-1)bso_16] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(COND_LOAD1082(x1, x2, x3, x4)) = [-1] + [-1]x4 + x3
POL(LOAD1082(x1, x2, x3)) = [-1] + [-1]x3 + x2
POL(+(x1, x2)) = x1 + x2
POL(-1) = [-1]
POL(>(x1, x2)) = 0
COND_LOAD1082(TRUE, i8[1], i23[1], i56[1]) → LOAD1082(i8[1], +(i23[1], -1), i56[1])
COND_LOAD1082(TRUE, i8[1], i23[1], i56[1]) → LOAD1082(i8[1], +(i23[1], -1), i56[1])
LOAD1082(i8[0], i23[0], i56[0]) → COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])
LOAD1082(i8[0], i23[0], i56[0]) → COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
(1) -> (0), if ((i8[1] →* i8[0])∧(i23[1] + -1 →* i23[0])∧(i56[1] →* i56[0]))
(0) -> (1), if ((i8[0] →* i8[1])∧(i56[0] →* i56[1])∧(i23[0] > i56[0] →* TRUE)∧(i23[0] →* i23[1]))
(1) -> (4), if ((i23[1] + -1 →* i23[4])∧(i56[1] →* i56[4])∧(i8[1] →* i8[4]))
(4) -> (5), if ((i8[4] →* i8[5])∧(i23[4] <= i56[4] →* TRUE)∧(i56[4] →* i56[5])∧(i23[4] →* i23[5]))
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
(1) -> (0), if ((i8[1] →* i8[0])∧(i23[1] + -1 →* i23[0])∧(i56[1] →* i56[0]))
(0) -> (1), if ((i8[0] →* i8[1])∧(i56[0] →* i56[1])∧(i23[0] > i56[0] →* TRUE)∧(i23[0] →* i23[1]))
(1) (i8[0]=i8[1]∧i56[0]=i56[1]∧>(i23[0], i56[0])=TRUE∧i23[0]=i23[1]∧i8[1]=i8[0]1∧+(i23[1], -1)=i23[0]1∧i56[1]=i56[0]1 ⇒ COND_LOAD1082(TRUE, i8[1], i23[1], i56[1])≥NonInfC∧COND_LOAD1082(TRUE, i8[1], i23[1], i56[1])≥LOAD1082(i8[1], +(i23[1], -1), i56[1])∧(UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥))
(2) (>(i23[0], i56[0])=TRUE ⇒ COND_LOAD1082(TRUE, i8[0], i23[0], i56[0])≥NonInfC∧COND_LOAD1082(TRUE, i8[0], i23[0], i56[0])≥LOAD1082(i8[0], +(i23[0], -1), i56[0])∧(UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥))
(3) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_13 + (-1)Bound*bni_13] + [(-1)bni_13]i56[0] + [bni_13]i23[0] ≥ 0∧[1 + (-1)bso_14] ≥ 0)
(4) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_13 + (-1)Bound*bni_13] + [(-1)bni_13]i56[0] + [bni_13]i23[0] ≥ 0∧[1 + (-1)bso_14] ≥ 0)
(5) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧[(-1)bni_13 + (-1)Bound*bni_13] + [(-1)bni_13]i56[0] + [bni_13]i23[0] ≥ 0∧[1 + (-1)bso_14] ≥ 0)
(6) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧0 = 0∧[(-1)bni_13 + (-1)Bound*bni_13] + [(-1)bni_13]i56[0] + [bni_13]i23[0] ≥ 0∧0 = 0∧[1 + (-1)bso_14] ≥ 0)
(7) (i23[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧0 = 0∧[(-1)Bound*bni_13] + [bni_13]i23[0] ≥ 0∧0 = 0∧[1 + (-1)bso_14] ≥ 0)
(8) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧0 = 0∧[(-1)Bound*bni_13] + [bni_13]i23[0] ≥ 0∧0 = 0∧[1 + (-1)bso_14] ≥ 0)
(9) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(LOAD1082(i8[1], +(i23[1], -1), i56[1])), ≥)∧0 = 0∧[(-1)Bound*bni_13] + [bni_13]i23[0] ≥ 0∧0 = 0∧[1 + (-1)bso_14] ≥ 0)
(10) (i8[0]=i8[1]∧i56[0]=i56[1]∧>(i23[0], i56[0])=TRUE∧i23[0]=i23[1] ⇒ LOAD1082(i8[0], i23[0], i56[0])≥NonInfC∧LOAD1082(i8[0], i23[0], i56[0])≥COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])∧(UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥))
(11) (>(i23[0], i56[0])=TRUE ⇒ LOAD1082(i8[0], i23[0], i56[0])≥NonInfC∧LOAD1082(i8[0], i23[0], i56[0])≥COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])∧(UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥))
(12) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[(-1)bni_15 + (-1)Bound*bni_15] + [(-1)bni_15]i56[0] + [bni_15]i23[0] ≥ 0∧[(-1)bso_16] ≥ 0)
(13) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[(-1)bni_15 + (-1)Bound*bni_15] + [(-1)bni_15]i56[0] + [bni_15]i23[0] ≥ 0∧[(-1)bso_16] ≥ 0)
(14) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧[(-1)bni_15 + (-1)Bound*bni_15] + [(-1)bni_15]i56[0] + [bni_15]i23[0] ≥ 0∧[(-1)bso_16] ≥ 0)
(15) (i23[0] + [-1] + [-1]i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧0 = 0∧[(-1)bni_15 + (-1)Bound*bni_15] + [(-1)bni_15]i56[0] + [bni_15]i23[0] ≥ 0∧0 = 0∧[(-1)bso_16] ≥ 0)
(16) (i23[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧0 = 0∧[(-1)Bound*bni_15] + [bni_15]i23[0] ≥ 0∧0 = 0∧[(-1)bso_16] ≥ 0)
(17) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧0 = 0∧[(-1)Bound*bni_15] + [bni_15]i23[0] ≥ 0∧0 = 0∧[(-1)bso_16] ≥ 0)
(18) (i23[0] ≥ 0∧i56[0] ≥ 0 ⇒ (UIncreasing(COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])), ≥)∧0 = 0∧[(-1)Bound*bni_15] + [bni_15]i23[0] ≥ 0∧0 = 0∧[(-1)bso_16] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(COND_LOAD1082(x1, x2, x3, x4)) = [-1] + [-1]x4 + x3
POL(LOAD1082(x1, x2, x3)) = [-1] + [-1]x3 + x2
POL(+(x1, x2)) = x1 + x2
POL(-1) = [-1]
POL(>(x1, x2)) = 0
COND_LOAD1082(TRUE, i8[1], i23[1], i56[1]) → LOAD1082(i8[1], +(i23[1], -1), i56[1])
COND_LOAD1082(TRUE, i8[1], i23[1], i56[1]) → LOAD1082(i8[1], +(i23[1], -1), i56[1])
LOAD1082(i8[0], i23[0], i56[0]) → COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])
LOAD1082(i8[0], i23[0], i56[0]) → COND_LOAD1082(>(i23[0], i56[0]), i8[0], i23[0], i56[0])
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |