0 JBC
↳1 JBCToGraph (⇒, 240 ms)
↳2 JBCTerminationGraph
↳3 TerminationGraphToSCCProof (⇒, 0 ms)
↳4 AND
↳5 JBCTerminationSCC
↳6 SCCToIDPv1Proof (⇒, 80 ms)
↳7 IDP
↳8 IDPNonInfProof (⇒, 1250 ms)
↳9 AND
↳10 IDP
↳11 IDependencyGraphProof (⇔, 0 ms)
↳12 TRUE
↳13 IDP
↳14 IDPNonInfProof (⇒, 300 ms)
↳15 IDP
↳16 IDependencyGraphProof (⇔, 0 ms)
↳17 TRUE
↳18 JBCTerminationSCC
↳19 SCCToIDPv1Proof (⇒, 0 ms)
↳20 IDP
↳21 IDPNonInfProof (⇒, 80 ms)
↳22 AND
↳23 IDP
↳24 IDependencyGraphProof (⇔, 0 ms)
↳25 TRUE
↳26 IDP
↳27 IDependencyGraphProof (⇔, 0 ms)
↳28 TRUE
/**
* This class represents a list. The function get(n) can be used to access
* the n-th element.
* @author Marc Brockschmidt
*/
public class CyclicList {
/**
* A reference to the next list element.
*/
private CyclicList next;
public static void main(String[] args) {
CyclicList list = CyclicList.create(args.length);
list.get(args[0].length());
}
/**
* Create a new list element.
* @param n a reference to the next element.
*/
public CyclicList(final CyclicList n) {
this.next = n;
}
/**
* Create a new cyclical list of a length l.
* @param l some length
* @return cyclical list of length max(1, l)
*/
public static CyclicList create(int x) {
CyclicList last, current;
last = current = new CyclicList(null);
while (--x > 0)
current = new CyclicList(current);
return last.next = current;
}
public CyclicList get(int n) {
CyclicList cur = this;
while (--n > 0) {
cur = cur.next;
}
return cur;
}
}
Generated 18 rules for P and 0 rules for R.
P rules:
680_0_get_Load(EOS(STATIC_680), java.lang.Object(o291sub0), i169, o2900) → 694_0_get_LE(EOS(STATIC_694), java.lang.Object(o291sub0), i169, o2900, i169)
694_0_get_LE(EOS(STATIC_694), java.lang.Object(o291sub0), i179, o2900, i179) → 710_0_get_LE(EOS(STATIC_710), java.lang.Object(o291sub0), i179, o2900, i179)
710_0_get_LE(EOS(STATIC_710), java.lang.Object(o291sub0), i179, o2900, i179) → 727_0_get_Load(EOS(STATIC_727), java.lang.Object(o291sub0), i179, o2900) | >(i179, 0)
727_0_get_Load(EOS(STATIC_727), java.lang.Object(o291sub0), i179, o2900) → 749_0_get_FieldAccess(EOS(STATIC_749), java.lang.Object(o291sub0), i179, o2900)
749_0_get_FieldAccess(EOS(STATIC_749), java.lang.Object(o291sub0), i179, java.lang.Object(o359sub0)) → 765_0_get_FieldAccess(EOS(STATIC_765), java.lang.Object(o291sub0), i179, java.lang.Object(o359sub0))
765_0_get_FieldAccess(EOS(STATIC_765), java.lang.Object(o291sub0), i179, java.lang.Object(o359sub0)) → 782_0_get_FieldAccess(EOS(STATIC_782), java.lang.Object(o291sub0), i179, java.lang.Object(o359sub0))
765_0_get_FieldAccess(EOS(STATIC_765), java.lang.Object(o291sub0), i179, java.lang.Object(o291sub0)) → 783_0_get_FieldAccess(EOS(STATIC_783), java.lang.Object(o291sub0), i179, java.lang.Object(o291sub0))
782_0_get_FieldAccess(EOS(STATIC_782), java.lang.Object(o291sub0), i179, java.lang.Object(CyclicList(EOC, o3742125973745))) → 792_0_get_FieldAccess(EOS(STATIC_792), java.lang.Object(o291sub0), i179, java.lang.Object(CyclicList(EOC, o3742125973745)))
792_0_get_FieldAccess(EOS(STATIC_792), java.lang.Object(o291sub0), i179, java.lang.Object(CyclicList(EOC, o3742125973745))) → 797_0_get_Store(EOS(STATIC_797), java.lang.Object(o291sub0), i179, o3740)
797_0_get_Store(EOS(STATIC_797), java.lang.Object(o291sub0), i179, o3740) → 802_0_get_JMP(EOS(STATIC_802), java.lang.Object(o291sub0), i179, o3740)
802_0_get_JMP(EOS(STATIC_802), java.lang.Object(o291sub0), i179, o3740) → 811_0_get_Inc(EOS(STATIC_811), java.lang.Object(o291sub0), i179, o3740)
811_0_get_Inc(EOS(STATIC_811), java.lang.Object(o291sub0), i179, o3740) → 665_0_get_Inc(EOS(STATIC_665), java.lang.Object(o291sub0), i179, o3740)
665_0_get_Inc(EOS(STATIC_665), java.lang.Object(o291sub0), i160, o2900) → 680_0_get_Load(EOS(STATIC_680), java.lang.Object(o291sub0), +(i160, -1), o2900) | >=(i160, 0)
783_0_get_FieldAccess(EOS(STATIC_783), java.lang.Object(CyclicList(EOC, o3762125973807)), i179, java.lang.Object(CyclicList(EOC, o3762125973807))) → 793_0_get_FieldAccess(EOS(STATIC_793), java.lang.Object(CyclicList(EOC, o3762125973807)), i179, java.lang.Object(CyclicList(EOC, o3762125973807)))
793_0_get_FieldAccess(EOS(STATIC_793), java.lang.Object(CyclicList(EOC, o3762125973807)), i179, java.lang.Object(CyclicList(EOC, o3762125973807))) → 800_0_get_Store(EOS(STATIC_800), java.lang.Object(CyclicList(EOC, o3762125973807)), i179, o3760)
800_0_get_Store(EOS(STATIC_800), java.lang.Object(CyclicList(EOC, o3762125973807)), i179, o3760) → 804_0_get_JMP(EOS(STATIC_804), java.lang.Object(CyclicList(EOC, o3762125973807)), i179, o3760)
804_0_get_JMP(EOS(STATIC_804), java.lang.Object(CyclicList(EOC, o3762125973807)), i179, o3760) → 814_0_get_Inc(EOS(STATIC_814), java.lang.Object(CyclicList(EOC, o3762125973807)), i179, o3760)
814_0_get_Inc(EOS(STATIC_814), java.lang.Object(CyclicList(EOC, o3762125973807)), i179, o3760) → 665_0_get_Inc(EOS(STATIC_665), java.lang.Object(CyclicList(EOC, o3762125973807)), i179, o3760)
R rules:
Combined rules. Obtained 2 conditional rules for P and 0 conditional rules for R.
P rules:
680_0_get_Load(EOS(STATIC_680), java.lang.Object(x0), x1, java.lang.Object(CyclicList(EOC, x2))) → 680_0_get_Load(EOS(STATIC_680), java.lang.Object(x0), +(x1, -1), x3) | >(x1, 0)
680_0_get_Load(EOS(STATIC_680), java.lang.Object(CyclicList(EOC, x0)), x1, java.lang.Object(CyclicList(EOC, x0))) → 680_0_get_Load(EOS(STATIC_680), java.lang.Object(CyclicList(EOC, x0)), +(x1, -1), x2) | >(x1, 0)
R rules:
Filtered ground terms:
680_0_get_Load(x1, x2, x3, x4) → 680_0_get_Load(x2, x3, x4)
CyclicList(x1, x2) → CyclicList(x2)
EOS(x1) → EOS
Cond_680_0_get_Load1(x1, x2, x3, x4, x5, x6) → Cond_680_0_get_Load1(x1, x3, x4, x5, x6)
Cond_680_0_get_Load(x1, x2, x3, x4, x5, x6) → Cond_680_0_get_Load(x1, x3, x4, x5, x6)
Filtered duplicate args:
Cond_680_0_get_Load1(x1, x2, x3, x4, x5) → Cond_680_0_get_Load1(x1, x3, x4, x5)
Filtered unneeded arguments:
Cond_680_0_get_Load(x1, x2, x3, x4, x5) → Cond_680_0_get_Load(x1, x2, x3, x5)
Cond_680_0_get_Load1(x1, x2, x3, x4) → Cond_680_0_get_Load1(x1, x2, x4)
Combined rules. Obtained 2 conditional rules for P and 0 conditional rules for R.
P rules:
680_0_get_Load(java.lang.Object(x0), x1, java.lang.Object(CyclicList(x2))) → 680_0_get_Load(java.lang.Object(x0), +(x1, -1), x3) | >(x1, 0)
680_0_get_Load(java.lang.Object(CyclicList(x0)), x1, java.lang.Object(CyclicList(x0))) → 680_0_get_Load(java.lang.Object(CyclicList(x0)), +(x1, -1), x2) | >(x1, 0)
R rules:
Finished conversion. Obtained 4 rules for P and 0 rules for R. System has predefined symbols.
P rules:
680_0_GET_LOAD(java.lang.Object(x0), x1, java.lang.Object(CyclicList(x2))) → COND_680_0_GET_LOAD(>(x1, 0), java.lang.Object(x0), x1, java.lang.Object(CyclicList(x2)), x3)
COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0), x1, java.lang.Object(CyclicList(x2)), x3) → 680_0_GET_LOAD(java.lang.Object(x0), +(x1, -1), x3)
680_0_GET_LOAD(java.lang.Object(CyclicList(x0)), x1, java.lang.Object(CyclicList(x0))) → COND_680_0_GET_LOAD1(>(x1, 0), java.lang.Object(CyclicList(x0)), x1, java.lang.Object(CyclicList(x0)), x2)
COND_680_0_GET_LOAD1(TRUE, java.lang.Object(CyclicList(x0)), x1, java.lang.Object(CyclicList(x0)), x2) → 680_0_GET_LOAD(java.lang.Object(CyclicList(x0)), +(x1, -1), x2)
R rules:
!= | ~ | 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
(0) -> (1), if (x1[0] > 0 ∧java.lang.Object(x0[0]) →* java.lang.Object(x0[1])∧x1[0] →* x1[1]∧java.lang.Object(CyclicList(x2[0])) →* java.lang.Object(CyclicList(x2[1]))∧x3[0] →* x3[1])
(1) -> (0), if (java.lang.Object(x0[1]) →* java.lang.Object(x0[0])∧x1[1] + -1 →* x1[0]∧x3[1] →* java.lang.Object(CyclicList(x2[0])))
(1) -> (2), if (java.lang.Object(x0[1]) →* java.lang.Object(CyclicList(x0[2]))∧x1[1] + -1 →* x1[2]∧x3[1] →* java.lang.Object(CyclicList(x0[2])))
(2) -> (3), if (x1[2] > 0 ∧java.lang.Object(CyclicList(x0[2])) →* java.lang.Object(CyclicList(x0[3]))∧x1[2] →* x1[3]∧x2[2] →* x2[3])
(3) -> (0), if (java.lang.Object(CyclicList(x0[3])) →* java.lang.Object(x0[0])∧x1[3] + -1 →* x1[0]∧x2[3] →* java.lang.Object(CyclicList(x2[0])))
(3) -> (2), if (java.lang.Object(CyclicList(x0[3])) →* java.lang.Object(CyclicList(x0[2]))∧x1[3] + -1 →* x1[2]∧x2[3] →* java.lang.Object(CyclicList(x0[2])))
(1) (java.lang.Object(x0[1])=java.lang.Object(x0[0])∧+(x1[1], -1)=x1[0]∧x3[1]=java.lang.Object(CyclicList(x2[0]))∧>(x1[0], 0)=TRUE∧java.lang.Object(x0[0])=java.lang.Object(x0[1]1)∧x1[0]=x1[1]1∧java.lang.Object(CyclicList(x2[0]))=java.lang.Object(CyclicList(x2[1]1))∧x3[0]=x3[1]1 ⇒ 680_0_GET_LOAD(java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])))≥NonInfC∧680_0_GET_LOAD(java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])))≥COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])∧(UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥))
(2) (>(+(x1[1], -1), 0)=TRUE ⇒ 680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), java.lang.Object(CyclicList(x2[0])))≥NonInfC∧680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), java.lang.Object(CyclicList(x2[0])))≥COND_680_0_GET_LOAD(>(+(x1[1], -1), 0), java.lang.Object(x0[1]), +(x1[1], -1), java.lang.Object(CyclicList(x2[0])), x3[0])∧(UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥))
(3) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧[(-1)bni_24 + (-1)Bound*bni_24] + [bni_24]x1[1] + [(-2)bni_24]x0[1] ≥ 0∧[(-1)bso_25] ≥ 0)
(4) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧[(-1)bni_24 + (-1)Bound*bni_24] + [bni_24]x1[1] + [(-2)bni_24]x0[1] ≥ 0∧[(-1)bso_25] ≥ 0)
(5) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧[(-1)bni_24 + (-1)Bound*bni_24] + [bni_24]x1[1] + [(-2)bni_24]x0[1] ≥ 0∧[(-1)bso_25] ≥ 0)
(6) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧0 = 0∧[(-2)bni_24] = 0∧[(-1)bni_24 + (-1)Bound*bni_24] + [bni_24]x1[1] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_25] ≥ 0)
(7) (x1[1] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧0 = 0∧[(-2)bni_24] = 0∧[bni_24 + (-1)Bound*bni_24] + [bni_24]x1[1] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_25] ≥ 0)
(8) (java.lang.Object(CyclicList(x0[3]))=java.lang.Object(x0[0])∧+(x1[3], -1)=x1[0]∧x2[3]=java.lang.Object(CyclicList(x2[0]))∧>(x1[0], 0)=TRUE∧java.lang.Object(x0[0])=java.lang.Object(x0[1])∧x1[0]=x1[1]∧java.lang.Object(CyclicList(x2[0]))=java.lang.Object(CyclicList(x2[1]))∧x3[0]=x3[1] ⇒ 680_0_GET_LOAD(java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])))≥NonInfC∧680_0_GET_LOAD(java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])))≥COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])∧(UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥))
(9) (>(+(x1[3], -1), 0)=TRUE ⇒ 680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), java.lang.Object(CyclicList(x2[0])))≥NonInfC∧680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), java.lang.Object(CyclicList(x2[0])))≥COND_680_0_GET_LOAD(>(+(x1[3], -1), 0), java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), java.lang.Object(CyclicList(x2[0])), x3[0])∧(UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥))
(10) (x1[3] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧[bni_24 + (-1)Bound*bni_24] + [bni_24]x1[3] ≥ 0∧[(-1)bso_25] ≥ 0)
(11) (x1[3] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧[bni_24 + (-1)Bound*bni_24] + [bni_24]x1[3] ≥ 0∧[(-1)bso_25] ≥ 0)
(12) (x1[3] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧[bni_24 + (-1)Bound*bni_24] + [bni_24]x1[3] ≥ 0∧[(-1)bso_25] ≥ 0)
(13) (x1[3] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧0 = 0∧0 = 0∧[bni_24 + (-1)Bound*bni_24] + [bni_24]x1[3] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_25] ≥ 0)
(14) (x1[3] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧0 = 0∧0 = 0∧[(3)bni_24 + (-1)Bound*bni_24] + [bni_24]x1[3] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_25] ≥ 0)
(15) (>(x1[0], 0)=TRUE∧java.lang.Object(x0[0])=java.lang.Object(x0[1])∧x1[0]=x1[1]∧java.lang.Object(CyclicList(x2[0]))=java.lang.Object(CyclicList(x2[1]))∧x3[0]=x3[1]∧java.lang.Object(x0[1])=java.lang.Object(x0[0]1)∧+(x1[1], -1)=x1[0]1∧x3[1]=java.lang.Object(CyclicList(x2[0]1)) ⇒ COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[1]), x1[1], java.lang.Object(CyclicList(x2[1])), x3[1])≥NonInfC∧COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[1]), x1[1], java.lang.Object(CyclicList(x2[1])), x3[1])≥680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])∧(UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥))
(16) (>(x1[0], 0)=TRUE ⇒ COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), java.lang.Object(CyclicList(x2[0]1)))≥NonInfC∧COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), java.lang.Object(CyclicList(x2[0]1)))≥680_0_GET_LOAD(java.lang.Object(x0[0]), +(x1[0], -1), java.lang.Object(CyclicList(x2[0]1)))∧(UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥))
(17) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧[(-1)Bound*bni_26] + [bni_26]x1[0] + [(-2)bni_26]x0[0] ≥ 0∧[1 + (-1)bso_27] ≥ 0)
(18) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧[(-1)Bound*bni_26] + [bni_26]x1[0] + [(-2)bni_26]x0[0] ≥ 0∧[1 + (-1)bso_27] ≥ 0)
(19) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧[(-1)Bound*bni_26] + [bni_26]x1[0] + [(-2)bni_26]x0[0] ≥ 0∧[1 + (-1)bso_27] ≥ 0)
(20) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧0 = 0∧0 = 0∧[(-2)bni_26] = 0∧[(-1)Bound*bni_26] + [bni_26]x1[0] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[1 + (-1)bso_27] ≥ 0)
(21) (x1[0] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧0 = 0∧0 = 0∧[(-2)bni_26] = 0∧[(-1)Bound*bni_26 + bni_26] + [bni_26]x1[0] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[1 + (-1)bso_27] ≥ 0)
(22) (>(x1[0], 0)=TRUE∧java.lang.Object(x0[0])=java.lang.Object(x0[1])∧x1[0]=x1[1]∧java.lang.Object(CyclicList(x2[0]))=java.lang.Object(CyclicList(x2[1]))∧x3[0]=x3[1]∧java.lang.Object(x0[1])=java.lang.Object(CyclicList(x0[2]))∧+(x1[1], -1)=x1[2]∧x3[1]=java.lang.Object(CyclicList(x0[2])) ⇒ COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[1]), x1[1], java.lang.Object(CyclicList(x2[1])), x3[1])≥NonInfC∧COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[1]), x1[1], java.lang.Object(CyclicList(x2[1])), x3[1])≥680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])∧(UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥))
(23) (>(x1[0], 0)=TRUE ⇒ COND_680_0_GET_LOAD(TRUE, java.lang.Object(CyclicList(x0[2])), x1[0], java.lang.Object(CyclicList(x2[0])), java.lang.Object(CyclicList(x0[2])))≥NonInfC∧COND_680_0_GET_LOAD(TRUE, java.lang.Object(CyclicList(x0[2])), x1[0], java.lang.Object(CyclicList(x2[0])), java.lang.Object(CyclicList(x0[2])))≥680_0_GET_LOAD(java.lang.Object(CyclicList(x0[2])), +(x1[0], -1), java.lang.Object(CyclicList(x0[2])))∧(UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥))
(24) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧[(2)bni_26 + (-1)Bound*bni_26] + [bni_26]x1[0] ≥ 0∧[1 + (-1)bso_27] ≥ 0)
(25) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧[(2)bni_26 + (-1)Bound*bni_26] + [bni_26]x1[0] ≥ 0∧[1 + (-1)bso_27] ≥ 0)
(26) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧[(2)bni_26 + (-1)Bound*bni_26] + [bni_26]x1[0] ≥ 0∧[1 + (-1)bso_27] ≥ 0)
(27) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧0 = 0∧0 = 0∧[(2)bni_26 + (-1)Bound*bni_26] + [bni_26]x1[0] ≥ 0∧0 = 0∧0 = 0∧[1 + (-1)bso_27] ≥ 0)
(28) (x1[0] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧0 = 0∧0 = 0∧[(3)bni_26 + (-1)Bound*bni_26] + [bni_26]x1[0] ≥ 0∧0 = 0∧0 = 0∧[1 + (-1)bso_27] ≥ 0)
(29) (java.lang.Object(x0[1])=java.lang.Object(CyclicList(x0[2]))∧+(x1[1], -1)=x1[2]∧x3[1]=java.lang.Object(CyclicList(x0[2]))∧>(x1[2], 0)=TRUE∧java.lang.Object(CyclicList(x0[2]))=java.lang.Object(CyclicList(x0[3]))∧x1[2]=x1[3]∧x2[2]=x2[3] ⇒ 680_0_GET_LOAD(java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])))≥NonInfC∧680_0_GET_LOAD(java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])))≥COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])∧(UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥))
(30) (>(+(x1[1], -1), 0)=TRUE ⇒ 680_0_GET_LOAD(java.lang.Object(CyclicList(x0[2])), +(x1[1], -1), java.lang.Object(CyclicList(x0[2])))≥NonInfC∧680_0_GET_LOAD(java.lang.Object(CyclicList(x0[2])), +(x1[1], -1), java.lang.Object(CyclicList(x0[2])))≥COND_680_0_GET_LOAD1(>(+(x1[1], -1), 0), java.lang.Object(CyclicList(x0[2])), +(x1[1], -1), java.lang.Object(CyclicList(x0[2])), x2[2])∧(UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥))
(31) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥)∧[bni_28 + (-1)Bound*bni_28] + [bni_28]x1[1] ≥ 0∧[(-1)bso_29] ≥ 0)
(32) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥)∧[bni_28 + (-1)Bound*bni_28] + [bni_28]x1[1] ≥ 0∧[(-1)bso_29] ≥ 0)
(33) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥)∧[bni_28 + (-1)Bound*bni_28] + [bni_28]x1[1] ≥ 0∧[(-1)bso_29] ≥ 0)
(34) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥)∧0 = 0∧[bni_28 + (-1)Bound*bni_28] + [bni_28]x1[1] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_29] ≥ 0)
(35) (x1[1] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥)∧0 = 0∧[(3)bni_28 + (-1)Bound*bni_28] + [bni_28]x1[1] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_29] ≥ 0)
(36) (java.lang.Object(CyclicList(x0[3]))=java.lang.Object(CyclicList(x0[2]))∧+(x1[3], -1)=x1[2]∧x2[3]=java.lang.Object(CyclicList(x0[2]))∧>(x1[2], 0)=TRUE∧java.lang.Object(CyclicList(x0[2]))=java.lang.Object(CyclicList(x0[3]1))∧x1[2]=x1[3]1∧x2[2]=x2[3]1 ⇒ 680_0_GET_LOAD(java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])))≥NonInfC∧680_0_GET_LOAD(java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])))≥COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])∧(UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥))
(37) (>(+(x1[3], -1), 0)=TRUE ⇒ 680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), java.lang.Object(CyclicList(x0[3])))≥NonInfC∧680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), java.lang.Object(CyclicList(x0[3])))≥COND_680_0_GET_LOAD1(>(+(x1[3], -1), 0), java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), java.lang.Object(CyclicList(x0[3])), x2[2])∧(UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥))
(38) (x1[3] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥)∧[bni_28 + (-1)Bound*bni_28] + [bni_28]x1[3] ≥ 0∧[(-1)bso_29] ≥ 0)
(39) (x1[3] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥)∧[bni_28 + (-1)Bound*bni_28] + [bni_28]x1[3] ≥ 0∧[(-1)bso_29] ≥ 0)
(40) (x1[3] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥)∧[bni_28 + (-1)Bound*bni_28] + [bni_28]x1[3] ≥ 0∧[(-1)bso_29] ≥ 0)
(41) (x1[3] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥)∧0 = 0∧[bni_28 + (-1)Bound*bni_28] + [bni_28]x1[3] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_29] ≥ 0)
(42) (x1[3] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])), ≥)∧0 = 0∧[(3)bni_28 + (-1)Bound*bni_28] + [bni_28]x1[3] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_29] ≥ 0)
(43) (>(x1[2], 0)=TRUE∧java.lang.Object(CyclicList(x0[2]))=java.lang.Object(CyclicList(x0[3]))∧x1[2]=x1[3]∧x2[2]=x2[3]∧java.lang.Object(CyclicList(x0[3]))=java.lang.Object(x0[0])∧+(x1[3], -1)=x1[0]∧x2[3]=java.lang.Object(CyclicList(x2[0])) ⇒ COND_680_0_GET_LOAD1(TRUE, java.lang.Object(CyclicList(x0[3])), x1[3], java.lang.Object(CyclicList(x0[3])), x2[3])≥NonInfC∧COND_680_0_GET_LOAD1(TRUE, java.lang.Object(CyclicList(x0[3])), x1[3], java.lang.Object(CyclicList(x0[3])), x2[3])≥680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])∧(UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥))
(44) (>(x1[2], 0)=TRUE ⇒ COND_680_0_GET_LOAD1(TRUE, java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), java.lang.Object(CyclicList(x2[0])))≥NonInfC∧COND_680_0_GET_LOAD1(TRUE, java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), java.lang.Object(CyclicList(x2[0])))≥680_0_GET_LOAD(java.lang.Object(CyclicList(x0[2])), +(x1[2], -1), java.lang.Object(CyclicList(x2[0])))∧(UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥))
(45) (x1[2] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [bni_30]x1[2] ≥ 0∧[1 + (-1)bso_31] ≥ 0)
(46) (x1[2] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [bni_30]x1[2] ≥ 0∧[1 + (-1)bso_31] ≥ 0)
(47) (x1[2] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [bni_30]x1[2] ≥ 0∧[1 + (-1)bso_31] ≥ 0)
(48) (x1[2] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥)∧0 = 0∧0 = 0∧[(2)bni_30 + (-1)Bound*bni_30] + [bni_30]x1[2] ≥ 0∧0 = 0∧0 = 0∧[1 + (-1)bso_31] ≥ 0)
(49) (x1[2] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥)∧0 = 0∧0 = 0∧[(3)bni_30 + (-1)Bound*bni_30] + [bni_30]x1[2] ≥ 0∧0 = 0∧0 = 0∧[1 + (-1)bso_31] ≥ 0)
(50) (>(x1[2], 0)=TRUE∧java.lang.Object(CyclicList(x0[2]))=java.lang.Object(CyclicList(x0[3]))∧x1[2]=x1[3]∧x2[2]=x2[3]∧java.lang.Object(CyclicList(x0[3]))=java.lang.Object(CyclicList(x0[2]1))∧+(x1[3], -1)=x1[2]1∧x2[3]=java.lang.Object(CyclicList(x0[2]1)) ⇒ COND_680_0_GET_LOAD1(TRUE, java.lang.Object(CyclicList(x0[3])), x1[3], java.lang.Object(CyclicList(x0[3])), x2[3])≥NonInfC∧COND_680_0_GET_LOAD1(TRUE, java.lang.Object(CyclicList(x0[3])), x1[3], java.lang.Object(CyclicList(x0[3])), x2[3])≥680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])∧(UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥))
(51) (>(x1[2], 0)=TRUE ⇒ COND_680_0_GET_LOAD1(TRUE, java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), java.lang.Object(CyclicList(x0[2])))≥NonInfC∧COND_680_0_GET_LOAD1(TRUE, java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), java.lang.Object(CyclicList(x0[2])))≥680_0_GET_LOAD(java.lang.Object(CyclicList(x0[2])), +(x1[2], -1), java.lang.Object(CyclicList(x0[2])))∧(UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥))
(52) (x1[2] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [bni_30]x1[2] ≥ 0∧[1 + (-1)bso_31] ≥ 0)
(53) (x1[2] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [bni_30]x1[2] ≥ 0∧[1 + (-1)bso_31] ≥ 0)
(54) (x1[2] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [bni_30]x1[2] ≥ 0∧[1 + (-1)bso_31] ≥ 0)
(55) (x1[2] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥)∧0 = 0∧[(2)bni_30 + (-1)Bound*bni_30] + [bni_30]x1[2] ≥ 0∧0 = 0∧[1 + (-1)bso_31] ≥ 0)
(56) (x1[2] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])), ≥)∧0 = 0∧[(3)bni_30 + (-1)Bound*bni_30] + [bni_30]x1[2] ≥ 0∧0 = 0∧[1 + (-1)bso_31] ≥ 0)
POL(TRUE) = [2]
POL(FALSE) = 0
POL(680_0_GET_LOAD(x1, x2, x3)) = [1] + [-1]x3 + x2 + [2]x1
POL(java.lang.Object(x1)) = [-1]x1
POL(CyclicList(x1)) = [-1]
POL(COND_680_0_GET_LOAD(x1, x2, x3, x4, x5)) = [-1] + x4 + x3 + [2]x2
POL(>(x1, x2)) = [-1]
POL(0) = 0
POL(+(x1, x2)) = x1 + x2
POL(-1) = [-1]
POL(COND_680_0_GET_LOAD1(x1, x2, x3, x4, x5)) = x4 + x3 + x2
COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[1]), x1[1], java.lang.Object(CyclicList(x2[1])), x3[1]) → 680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])
COND_680_0_GET_LOAD1(TRUE, java.lang.Object(CyclicList(x0[3])), x1[3], java.lang.Object(CyclicList(x0[3])), x2[3]) → 680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])
680_0_GET_LOAD(java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2]))) → COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])
COND_680_0_GET_LOAD1(TRUE, java.lang.Object(CyclicList(x0[3])), x1[3], java.lang.Object(CyclicList(x0[3])), x2[3]) → 680_0_GET_LOAD(java.lang.Object(CyclicList(x0[3])), +(x1[3], -1), x2[3])
680_0_GET_LOAD(java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0]))) → COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])
680_0_GET_LOAD(java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2]))) → COND_680_0_GET_LOAD1(>(x1[2], 0), java.lang.Object(CyclicList(x0[2])), x1[2], java.lang.Object(CyclicList(x0[2])), x2[2])
!= | ~ | 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 |
Integer
(1) -> (0), if (java.lang.Object(x0[1]) →* java.lang.Object(x0[0])∧x1[1] + -1 →* x1[0]∧x3[1] →* java.lang.Object(CyclicList(x2[0])))
(0) -> (1), if (x1[0] > 0 ∧java.lang.Object(x0[0]) →* java.lang.Object(x0[1])∧x1[0] →* x1[1]∧java.lang.Object(CyclicList(x2[0])) →* java.lang.Object(CyclicList(x2[1]))∧x3[0] →* x3[1])
(1) (java.lang.Object(x0[1])=java.lang.Object(x0[0])∧+(x1[1], -1)=x1[0]∧x3[1]=java.lang.Object(CyclicList(x2[0]))∧>(x1[0], 0)=TRUE∧java.lang.Object(x0[0])=java.lang.Object(x0[1]1)∧x1[0]=x1[1]1∧java.lang.Object(CyclicList(x2[0]))=java.lang.Object(CyclicList(x2[1]1))∧x3[0]=x3[1]1 ⇒ 680_0_GET_LOAD(java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])))≥NonInfC∧680_0_GET_LOAD(java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])))≥COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])∧(UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥))
(2) (>(+(x1[1], -1), 0)=TRUE ⇒ 680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), java.lang.Object(CyclicList(x2[0])))≥NonInfC∧680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), java.lang.Object(CyclicList(x2[0])))≥COND_680_0_GET_LOAD(>(+(x1[1], -1), 0), java.lang.Object(x0[1]), +(x1[1], -1), java.lang.Object(CyclicList(x2[0])), x3[0])∧(UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥))
(3) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧[bni_18 + (-1)Bound*bni_18] + [bni_18]x1[1] ≥ 0∧[1 + (-1)bso_19] ≥ 0)
(4) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧[bni_18 + (-1)Bound*bni_18] + [bni_18]x1[1] ≥ 0∧[1 + (-1)bso_19] ≥ 0)
(5) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧[bni_18 + (-1)Bound*bni_18] + [bni_18]x1[1] ≥ 0∧[1 + (-1)bso_19] ≥ 0)
(6) (x1[1] + [-2] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧0 = 0∧0 = 0∧[bni_18 + (-1)Bound*bni_18] + [bni_18]x1[1] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[1 + (-1)bso_19] ≥ 0)
(7) (x1[1] ≥ 0 ⇒ (UIncreasing(COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])), ≥)∧0 = 0∧0 = 0∧[(3)bni_18 + (-1)Bound*bni_18] + [bni_18]x1[1] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[1 + (-1)bso_19] ≥ 0)
(8) (>(x1[0], 0)=TRUE∧java.lang.Object(x0[0])=java.lang.Object(x0[1])∧x1[0]=x1[1]∧java.lang.Object(CyclicList(x2[0]))=java.lang.Object(CyclicList(x2[1]))∧x3[0]=x3[1]∧java.lang.Object(x0[1])=java.lang.Object(x0[0]1)∧+(x1[1], -1)=x1[0]1∧x3[1]=java.lang.Object(CyclicList(x2[0]1)) ⇒ COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[1]), x1[1], java.lang.Object(CyclicList(x2[1])), x3[1])≥NonInfC∧COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[1]), x1[1], java.lang.Object(CyclicList(x2[1])), x3[1])≥680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])∧(UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥))
(9) (>(x1[0], 0)=TRUE ⇒ COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), java.lang.Object(CyclicList(x2[0]1)))≥NonInfC∧COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), java.lang.Object(CyclicList(x2[0]1)))≥680_0_GET_LOAD(java.lang.Object(x0[0]), +(x1[0], -1), java.lang.Object(CyclicList(x2[0]1)))∧(UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥))
(10) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧[bni_20 + (-1)Bound*bni_20] + [bni_20]x1[0] ≥ 0∧[(-1)bso_21] ≥ 0)
(11) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧[bni_20 + (-1)Bound*bni_20] + [bni_20]x1[0] ≥ 0∧[(-1)bso_21] ≥ 0)
(12) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧[bni_20 + (-1)Bound*bni_20] + [bni_20]x1[0] ≥ 0∧[(-1)bso_21] ≥ 0)
(13) (x1[0] + [-1] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧0 = 0∧0 = 0∧0 = 0∧[bni_20 + (-1)Bound*bni_20] + [bni_20]x1[0] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_21] ≥ 0)
(14) (x1[0] ≥ 0 ⇒ (UIncreasing(680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])), ≥)∧0 = 0∧0 = 0∧0 = 0∧[(2)bni_20 + (-1)Bound*bni_20] + [bni_20]x1[0] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_21] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(680_0_GET_LOAD(x1, x2, x3)) = [1] + x2 + [-1]x1
POL(java.lang.Object(x1)) = [-1]
POL(CyclicList(x1)) = [2] + [-1]x1
POL(COND_680_0_GET_LOAD(x1, x2, x3, x4, x5)) = [2] + x4 + x3
POL(>(x1, x2)) = [-1]
POL(0) = 0
POL(+(x1, x2)) = x1 + x2
POL(-1) = [-1]
680_0_GET_LOAD(java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0]))) → COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])
680_0_GET_LOAD(java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0]))) → COND_680_0_GET_LOAD(>(x1[0], 0), java.lang.Object(x0[0]), x1[0], java.lang.Object(CyclicList(x2[0])), x3[0])
COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[1]), x1[1], java.lang.Object(CyclicList(x2[1])), x3[1]) → 680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[1])
COND_680_0_GET_LOAD(TRUE, java.lang.Object(x0[1]), x1[1], java.lang.Object(CyclicList(x2[1])), x3[1]) → 680_0_GET_LOAD(java.lang.Object(x0[1]), +(x1[1], -1), x3[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
Generated 17 rules for P and 0 rules for R.
P rules:
181_0_create_Load(EOS(STATIC_181), i23) → 183_0_create_LE(EOS(STATIC_183), i23, i23)
183_0_create_LE(EOS(STATIC_183), i27, i27) → 186_0_create_LE(EOS(STATIC_186), i27, i27)
186_0_create_LE(EOS(STATIC_186), i27, i27) → 190_0_create_New(EOS(STATIC_190), i27) | >(i27, 0)
190_0_create_New(EOS(STATIC_190), i27) → 194_0_create_Duplicate(EOS(STATIC_194), i27)
194_0_create_Duplicate(EOS(STATIC_194), i27) → 198_0_create_Load(EOS(STATIC_198), i27)
198_0_create_Load(EOS(STATIC_198), i27) → 206_0_create_InvokeMethod(EOS(STATIC_206), i27)
206_0_create_InvokeMethod(EOS(STATIC_206), i27) → 213_0_<init>_Load(EOS(STATIC_213), i27)
213_0_<init>_Load(EOS(STATIC_213), i27) → 229_0_<init>_InvokeMethod(EOS(STATIC_229), i27)
229_0_<init>_InvokeMethod(EOS(STATIC_229), i27) → 246_0_<init>_Load(EOS(STATIC_246), i27)
246_0_<init>_Load(EOS(STATIC_246), i27) → 253_0_<init>_Load(EOS(STATIC_253), i27)
253_0_<init>_Load(EOS(STATIC_253), i27) → 262_0_<init>_FieldAccess(EOS(STATIC_262), i27)
262_0_<init>_FieldAccess(EOS(STATIC_262), i27) → 275_0_<init>_Return(EOS(STATIC_275), i27)
275_0_<init>_Return(EOS(STATIC_275), i27) → 287_0_create_Store(EOS(STATIC_287), i27)
287_0_create_Store(EOS(STATIC_287), i27) → 315_0_create_JMP(EOS(STATIC_315), i27)
315_0_create_JMP(EOS(STATIC_315), i27) → 327_0_create_Inc(EOS(STATIC_327), i27)
327_0_create_Inc(EOS(STATIC_327), i27) → 176_0_create_Inc(EOS(STATIC_176), i27)
176_0_create_Inc(EOS(STATIC_176), i19) → 181_0_create_Load(EOS(STATIC_181), +(i19, -1)) | >=(i19, 0)
R rules:
Combined rules. Obtained 1 conditional rules for P and 0 conditional rules for R.
P rules:
181_0_create_Load(EOS(STATIC_181), x0) → 181_0_create_Load(EOS(STATIC_181), +(x0, -1)) | >(x0, 0)
R rules:
Filtered ground terms:
181_0_create_Load(x1, x2) → 181_0_create_Load(x2)
EOS(x1) → EOS
Cond_181_0_create_Load(x1, x2, x3) → Cond_181_0_create_Load(x1, x3)
Combined rules. Obtained 1 conditional rules for P and 0 conditional rules for R.
P rules:
181_0_create_Load(x0) → 181_0_create_Load(+(x0, -1)) | >(x0, 0)
R rules:
Finished conversion. Obtained 2 rules for P and 0 rules for R. System has predefined symbols.
P rules:
181_0_CREATE_LOAD(x0) → COND_181_0_CREATE_LOAD(>(x0, 0), x0)
COND_181_0_CREATE_LOAD(TRUE, x0) → 181_0_CREATE_LOAD(+(x0, -1))
R rules:
!= | ~ | 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
(0) -> (1), if (x0[0] > 0 ∧x0[0] →* x0[1])
(1) -> (0), if (x0[1] + -1 →* x0[0])
(1) (>(x0[0], 0)=TRUE∧x0[0]=x0[1] ⇒ 181_0_CREATE_LOAD(x0[0])≥NonInfC∧181_0_CREATE_LOAD(x0[0])≥COND_181_0_CREATE_LOAD(>(x0[0], 0), x0[0])∧(UIncreasing(COND_181_0_CREATE_LOAD(>(x0[0], 0), x0[0])), ≥))
(2) (>(x0[0], 0)=TRUE ⇒ 181_0_CREATE_LOAD(x0[0])≥NonInfC∧181_0_CREATE_LOAD(x0[0])≥COND_181_0_CREATE_LOAD(>(x0[0], 0), x0[0])∧(UIncreasing(COND_181_0_CREATE_LOAD(>(x0[0], 0), x0[0])), ≥))
(3) (x0[0] + [-1] ≥ 0 ⇒ (UIncreasing(COND_181_0_CREATE_LOAD(>(x0[0], 0), x0[0])), ≥)∧[(-1)Bound*bni_8] + [(2)bni_8]x0[0] ≥ 0∧[(-1)bso_9] ≥ 0)
(4) (x0[0] + [-1] ≥ 0 ⇒ (UIncreasing(COND_181_0_CREATE_LOAD(>(x0[0], 0), x0[0])), ≥)∧[(-1)Bound*bni_8] + [(2)bni_8]x0[0] ≥ 0∧[(-1)bso_9] ≥ 0)
(5) (x0[0] + [-1] ≥ 0 ⇒ (UIncreasing(COND_181_0_CREATE_LOAD(>(x0[0], 0), x0[0])), ≥)∧[(-1)Bound*bni_8] + [(2)bni_8]x0[0] ≥ 0∧[(-1)bso_9] ≥ 0)
(6) (x0[0] ≥ 0 ⇒ (UIncreasing(COND_181_0_CREATE_LOAD(>(x0[0], 0), x0[0])), ≥)∧[(-1)Bound*bni_8 + (2)bni_8] + [(2)bni_8]x0[0] ≥ 0∧[(-1)bso_9] ≥ 0)
(7) (COND_181_0_CREATE_LOAD(TRUE, x0[1])≥NonInfC∧COND_181_0_CREATE_LOAD(TRUE, x0[1])≥181_0_CREATE_LOAD(+(x0[1], -1))∧(UIncreasing(181_0_CREATE_LOAD(+(x0[1], -1))), ≥))
(8) ((UIncreasing(181_0_CREATE_LOAD(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(9) ((UIncreasing(181_0_CREATE_LOAD(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(10) ((UIncreasing(181_0_CREATE_LOAD(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(11) ((UIncreasing(181_0_CREATE_LOAD(+(x0[1], -1))), ≥)∧[bni_10] = 0∧0 = 0∧[2 + (-1)bso_11] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(181_0_CREATE_LOAD(x1)) = [2]x1
POL(COND_181_0_CREATE_LOAD(x1, x2)) = [2]x2
POL(>(x1, x2)) = [-1]
POL(0) = 0
POL(+(x1, x2)) = x1 + x2
POL(-1) = [-1]
COND_181_0_CREATE_LOAD(TRUE, x0[1]) → 181_0_CREATE_LOAD(+(x0[1], -1))
181_0_CREATE_LOAD(x0[0]) → COND_181_0_CREATE_LOAD(>(x0[0], 0), x0[0])
181_0_CREATE_LOAD(x0[0]) → COND_181_0_CREATE_LOAD(>(x0[0], 0), x0[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 |
Integer