0 JBC
↳1 JBC2FIG (⇒)
↳2 JBCTerminationGraph
↳3 FIGtoITRSProof (⇒)
↳4 AND
↳5 IDP
↳6 IDPtoQDPProof (⇒)
↳7 QDP
↳8 UsableRulesProof (⇔)
↳9 QDP
↳10 QReductionProof (⇔)
↳11 QDP
↳12 MRRProof (⇔)
↳13 QDP
↳14 PisEmptyProof (⇔)
↳15 YES
↳16 IDP
↳17 IDPNonInfProof (⇒)
↳18 AND
↳19 IDP
↳20 IDependencyGraphProof (⇔)
↳21 TRUE
↳22 IDP
↳23 IDependencyGraphProof (⇔)
↳24 TRUE
package IntListSumRec;
public class IntListSumRec {
public static void main(String[] args) {
Random.args = args;
List l = List.createList(Random.random());
int sum = l.sumList();
}
}
class List {
int value;
List next;
public List(int v, List n) {
this.value = v;
this.next = n;
}
public int sumList() {
if (this.next == null) {
return this.value;
} else {
int firstTwo = this.value + this.next.value;
List nextNext = this.next.next;
List shorter = new List(firstTwo, nextNext);
return shorter.sumList();
}
}
public static List createList(int l) {
if (l < 0) {
return null;
} else {
return new List(Random.random(), createList(l - 1));
}
}
}
class Random {
static String[] args;
static int index = 0;
public static int random() {
String string = args[index];
index++;
return string.length();
}
}
Generated 36 rules for P and 11 rules for R.
Combined rules. Obtained 1 rules for P and 3 rules for R.
Filtered ground terms:
IntListSumRec.List(x1, x2, x3) → IntListSumRec.List(x2, x3)
1150_0_sumList_FieldAccess(x1, x2, x3) → 1150_0_sumList_FieldAccess(x2, x3)
1268_0_sumList_Return(x1, x2) → 1268_0_sumList_Return(x2)
1215_0_sumList_Return(x1, x2) → 1215_0_sumList_Return(x2)
1162_0_sumList_Return(x1, x2, x3) → 1162_0_sumList_Return(x2, x3)
Filtered duplicate args:
1150_0_sumList_FieldAccess(x1, x2) → 1150_0_sumList_FieldAccess(x2)
Finished conversion. Obtained 1 rules for P and 3 rules for R. System has predefined symbols.
Generated 29 rules for P and 85 rules for R.
Combined rules. Obtained 2 rules for P and 6 rules for R.
Filtered ground terms:
786_1_createList_InvokeMethod(x1, x2, x3, x4, x5) → 786_1_createList_InvokeMethod(x1, x4, x5)
IntListSumRec.List(x1) → IntListSumRec.List
704_0_random_ArrayAccess(x1, x2, x3) → 704_0_random_ArrayAccess(x2, x3)
704_1_createList_InvokeMethod(x1, x2, x3, x4) → 704_1_createList_InvokeMethod(x1, x2)
Cond_717_1_createList_InvokeMethod(x1, x2, x3, x4, x5) → Cond_717_1_createList_InvokeMethod(x1, x2, x3)
717_0_random_IntArithmetic(x1, x2, x3, x4) → 717_0_random_IntArithmetic(x2, x3)
717_1_createList_InvokeMethod(x1, x2, x3, x4) → 717_1_createList_InvokeMethod(x1, x2)
Cond_704_1_createList_InvokeMethod(x1, x2, x3, x4, x5) → Cond_704_1_createList_InvokeMethod(x1, x2, x3)
1090_0_createList_Return(x1, x2) → 1090_0_createList_Return
939_0_createList_InvokeMethod(x1, x2, x3, x4, x5, x6) → 939_0_createList_InvokeMethod(x2, x5, x6)
java.lang.NullPointerException(x1) → java.lang.NullPointerException
900_0_createList_InvokeMethod(x1, x2, x3, x4, x5) → 900_0_createList_InvokeMethod(x3)
896_0_createList_Return(x1, x2) → 896_0_createList_Return
java.lang.ArrayIndexOutOfBoundsException(x1) → java.lang.ArrayIndexOutOfBoundsException
java.lang.IndexOutOfBoundsException(x1) → java.lang.IndexOutOfBoundsException
838_0_createList_InvokeMethod(x1, x2, x3, x4, x5) → 838_0_createList_InvokeMethod(x3)
692_0_createList_Return(x1, x2, x3) → 692_0_createList_Return
Filtered unneeded arguments:
786_1_createList_InvokeMethod(x1, x2, x3) → 786_1_createList_InvokeMethod(x1, x3)
Filtered all non-integer terms:
717_0_random_IntArithmetic(x1, x2) → 717_0_random_IntArithmetic(x2)
939_0_createList_InvokeMethod(x1, x2, x3) → 939_0_createList_InvokeMethod(x2, x3)
Combined rules. Obtained 2 rules for P and 6 rules for R.
Finished conversion. Obtained 2 rules for P and 6 rules for R. System has predefined symbols.
!= | ~ | 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) -> (0), if ((java.lang.Object(IntListSumRec.List(x0[0], x2[0] + x1[0])) →* java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(x0[0]', x1[0]')), x2[0]'))))
1150_0_SUMLIST_FIELDACCESS(java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(x0[0], x1[0])), x2[0]))) → 1150_0_SUMLIST_FIELDACCESS(java.lang.Object(IntListSumRec.List(x0[0], plus_int(x2[0], x1[0]))))
1208_1_sumList_InvokeMethod(1162_0_sumList_Return(java.lang.Object(IntListSumRec.List(NULL, x0)), x0), java.lang.Object(IntListSumRec.List(NULL, x0))) → 1215_0_sumList_Return(x0)
1208_1_sumList_InvokeMethod(1215_0_sumList_Return(x0), java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(NULL, x1)), x2))) → 1268_0_sumList_Return(x0)
1208_1_sumList_InvokeMethod(1268_0_sumList_Return(x0), java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(x1, x2)), x3)), x4))) → 1268_0_sumList_Return(x0)
plus_int(pos(x), neg(y)) → minus_nat(x, y)
plus_int(neg(x), pos(y)) → minus_nat(y, x)
plus_int(neg(x), neg(y)) → neg(plus_nat(x, y))
plus_int(pos(x), pos(y)) → pos(plus_nat(x, y))
plus_nat(0, x) → x
plus_nat(s(x), y) → s(plus_nat(x, y))
minus_nat(0, 0) → pos(0)
minus_nat(0, s(y)) → neg(s(y))
minus_nat(s(x), 0) → pos(s(x))
minus_nat(s(x), s(y)) → minus_nat(x, y)
1208_1_sumList_InvokeMethod(1162_0_sumList_Return(java.lang.Object(IntListSumRec.List(NULL, x0)), x0), java.lang.Object(IntListSumRec.List(NULL, x0)))
1208_1_sumList_InvokeMethod(1215_0_sumList_Return(x0), java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(NULL, x1)), x2)))
1208_1_sumList_InvokeMethod(1268_0_sumList_Return(x0), java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(x1, x2)), x3)), x4)))
plus_int(pos(x0), neg(x1))
plus_int(neg(x0), pos(x1))
plus_int(neg(x0), neg(x1))
plus_int(pos(x0), pos(x1))
plus_nat(0, x0)
plus_nat(s(x0), x1)
minus_nat(0, 0)
minus_nat(0, s(x0))
minus_nat(s(x0), 0)
minus_nat(s(x0), s(x1))
1150_0_SUMLIST_FIELDACCESS(java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(x0[0], x1[0])), x2[0]))) → 1150_0_SUMLIST_FIELDACCESS(java.lang.Object(IntListSumRec.List(x0[0], plus_int(x2[0], x1[0]))))
plus_int(pos(x), neg(y)) → minus_nat(x, y)
plus_int(neg(x), pos(y)) → minus_nat(y, x)
plus_int(neg(x), neg(y)) → neg(plus_nat(x, y))
plus_int(pos(x), pos(y)) → pos(plus_nat(x, y))
plus_nat(0, x) → x
plus_nat(s(x), y) → s(plus_nat(x, y))
minus_nat(0, 0) → pos(0)
minus_nat(0, s(y)) → neg(s(y))
minus_nat(s(x), 0) → pos(s(x))
minus_nat(s(x), s(y)) → minus_nat(x, y)
1208_1_sumList_InvokeMethod(1162_0_sumList_Return(java.lang.Object(IntListSumRec.List(NULL, x0)), x0), java.lang.Object(IntListSumRec.List(NULL, x0)))
1208_1_sumList_InvokeMethod(1215_0_sumList_Return(x0), java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(NULL, x1)), x2)))
1208_1_sumList_InvokeMethod(1268_0_sumList_Return(x0), java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(x1, x2)), x3)), x4)))
plus_int(pos(x0), neg(x1))
plus_int(neg(x0), pos(x1))
plus_int(neg(x0), neg(x1))
plus_int(pos(x0), pos(x1))
plus_nat(0, x0)
plus_nat(s(x0), x1)
minus_nat(0, 0)
minus_nat(0, s(x0))
minus_nat(s(x0), 0)
minus_nat(s(x0), s(x1))
1208_1_sumList_InvokeMethod(1162_0_sumList_Return(java.lang.Object(IntListSumRec.List(NULL, x0)), x0), java.lang.Object(IntListSumRec.List(NULL, x0)))
1208_1_sumList_InvokeMethod(1215_0_sumList_Return(x0), java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(NULL, x1)), x2)))
1208_1_sumList_InvokeMethod(1268_0_sumList_Return(x0), java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(x1, x2)), x3)), x4)))
1150_0_SUMLIST_FIELDACCESS(java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(x0[0], x1[0])), x2[0]))) → 1150_0_SUMLIST_FIELDACCESS(java.lang.Object(IntListSumRec.List(x0[0], plus_int(x2[0], x1[0]))))
plus_int(pos(x), neg(y)) → minus_nat(x, y)
plus_int(neg(x), pos(y)) → minus_nat(y, x)
plus_int(neg(x), neg(y)) → neg(plus_nat(x, y))
plus_int(pos(x), pos(y)) → pos(plus_nat(x, y))
plus_nat(0, x) → x
plus_nat(s(x), y) → s(plus_nat(x, y))
minus_nat(0, 0) → pos(0)
minus_nat(0, s(y)) → neg(s(y))
minus_nat(s(x), 0) → pos(s(x))
minus_nat(s(x), s(y)) → minus_nat(x, y)
plus_int(pos(x0), neg(x1))
plus_int(neg(x0), pos(x1))
plus_int(neg(x0), neg(x1))
plus_int(pos(x0), pos(x1))
plus_nat(0, x0)
plus_nat(s(x0), x1)
minus_nat(0, 0)
minus_nat(0, s(x0))
minus_nat(s(x0), 0)
minus_nat(s(x0), s(x1))
1150_0_SUMLIST_FIELDACCESS(java.lang.Object(IntListSumRec.List(java.lang.Object(IntListSumRec.List(x0[0], x1[0])), x2[0]))) → 1150_0_SUMLIST_FIELDACCESS(java.lang.Object(IntListSumRec.List(x0[0], plus_int(x2[0], x1[0]))))
plus_int(pos(x), neg(y)) → minus_nat(x, y)
plus_int(neg(x), pos(y)) → minus_nat(y, x)
plus_int(neg(x), neg(y)) → neg(plus_nat(x, y))
plus_int(pos(x), pos(y)) → pos(plus_nat(x, y))
plus_nat(0, x) → x
minus_nat(0, s(y)) → neg(s(y))
minus_nat(s(x), s(y)) → minus_nat(x, y)
POL(0) = 1
POL(1150_0_SUMLIST_FIELDACCESS(x1)) = x1
POL(IntListSumRec.List(x1, x2)) = x1 + x2
POL(java.lang.Object(x1)) = 2 + x1
POL(minus_nat(x1, x2)) = x1 + x2
POL(neg(x1)) = x1
POL(plus_int(x1, x2)) = 1 + x1 + x2
POL(plus_nat(x1, x2)) = x1 + x2
POL(pos(x1)) = 1 + x1
POL(s(x1)) = 1 + x1
plus_nat(s(x), y) → s(plus_nat(x, y))
minus_nat(0, 0) → pos(0)
minus_nat(s(x), 0) → pos(s(x))
plus_int(pos(x0), neg(x1))
plus_int(neg(x0), pos(x1))
plus_int(neg(x0), neg(x1))
plus_int(pos(x0), pos(x1))
plus_nat(0, x0)
plus_nat(s(x0), x1)
minus_nat(0, 0)
minus_nat(0, s(x0))
minus_nat(s(x0), 0)
minus_nat(s(x0), s(x1))
!= | ~ | 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 |
Boolean, Integer
(0) -> (1), if ((x2[0] >= 1 && x2[0] < x0[0] →* TRUE)∧(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]) →* 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1]))∧(x3[0] →* x3[1]))
(1) -> (2), if ((717_0_random_IntArithmetic(x5[1]) →* 717_0_random_IntArithmetic(x2[2]))∧(x3[1] →* x4[2]))
(2) -> (3), if ((x4[2] >= 0 && x2[2] > 0 && 0 <= x4[2] - 1 →* TRUE)∧(717_0_random_IntArithmetic(x2[2]) →* 717_0_random_IntArithmetic(x2[3]))∧(x4[2] →* x4[3]))
(3) -> (0), if ((704_0_random_ArrayAccess(java.lang.Object(ARRAY(x5[3], x6[3])), x7[3]) →* 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]))∧(x4[3] - 1 →* x3[0]))
(1) (&&(>=(x2[0], 1), <(x2[0], x0[0]))=TRUE∧704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0])=704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1])∧x3[0]=x3[1] ⇒ 704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])≥NonInfC∧704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])≥COND_704_1_CREATELIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])∧(UIncreasing(COND_704_1_CREATELIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])), ≥))
(2) (>=(x2[0], 1)=TRUE∧<(x2[0], x0[0])=TRUE ⇒ 704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])≥NonInfC∧704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])≥COND_704_1_CREATELIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])∧(UIncreasing(COND_704_1_CREATELIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])), ≥))
(3) (x2[0] + [-1] ≥ 0∧x0[0] + [-1] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_704_1_CREATELIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])), ≥)∧[(-1)Bound*bni_28] + [bni_28]x3[0] ≥ 0∧[(-1)bso_29] ≥ 0)
(4) (x2[0] + [-1] ≥ 0∧x0[0] + [-1] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_704_1_CREATELIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])), ≥)∧[(-1)Bound*bni_28] + [bni_28]x3[0] ≥ 0∧[(-1)bso_29] ≥ 0)
(5) (x2[0] + [-1] ≥ 0∧x0[0] + [-1] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_704_1_CREATELIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])), ≥)∧[(-1)Bound*bni_28] + [bni_28]x3[0] ≥ 0∧[(-1)bso_29] ≥ 0)
(6) (x2[0] + [-1] ≥ 0∧x0[0] + [-1] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_704_1_CREATELIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])), ≥)∧[bni_28] = 0∧0 = 0∧[(-1)Bound*bni_28] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_29] ≥ 0)
(7) (x2[0] ≥ 0∧x0[0] + [-2] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_704_1_CREATELIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])), ≥)∧[bni_28] = 0∧0 = 0∧[(-1)Bound*bni_28] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_29] ≥ 0)
(8) (x2[0] ≥ 0∧x0[0] ≥ 0 ⇒ (UIncreasing(COND_704_1_CREATELIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])), ≥)∧[bni_28] = 0∧0 = 0∧[(-1)Bound*bni_28] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_29] ≥ 0)
(9) (COND_704_1_CREATELIST_INVOKEMETHOD(TRUE, 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1]), x3[1])≥NonInfC∧COND_704_1_CREATELIST_INVOKEMETHOD(TRUE, 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1]), x3[1])≥717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x5[1]), x3[1])∧(UIncreasing(717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x5[1]), x3[1])), ≥))
(10) ((UIncreasing(717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x5[1]), x3[1])), ≥)∧[1 + (-1)bso_31] ≥ 0)
(11) ((UIncreasing(717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x5[1]), x3[1])), ≥)∧[1 + (-1)bso_31] ≥ 0)
(12) ((UIncreasing(717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x5[1]), x3[1])), ≥)∧[1 + (-1)bso_31] ≥ 0)
(13) ((UIncreasing(717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x5[1]), x3[1])), ≥)∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧[1 + (-1)bso_31] ≥ 0)
(14) (&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1)))=TRUE∧717_0_random_IntArithmetic(x2[2])=717_0_random_IntArithmetic(x2[3])∧x4[2]=x4[3] ⇒ 717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x2[2]), x4[2])≥NonInfC∧717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x2[2]), x4[2])≥COND_717_1_CREATELIST_INVOKEMETHOD(&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1))), 717_0_random_IntArithmetic(x2[2]), x4[2])∧(UIncreasing(COND_717_1_CREATELIST_INVOKEMETHOD(&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1))), 717_0_random_IntArithmetic(x2[2]), x4[2])), ≥))
(15) (<=(0, -(x4[2], 1))=TRUE∧>=(x4[2], 0)=TRUE∧>(x2[2], 0)=TRUE ⇒ 717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x2[2]), x4[2])≥NonInfC∧717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x2[2]), x4[2])≥COND_717_1_CREATELIST_INVOKEMETHOD(&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1))), 717_0_random_IntArithmetic(x2[2]), x4[2])∧(UIncreasing(COND_717_1_CREATELIST_INVOKEMETHOD(&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1))), 717_0_random_IntArithmetic(x2[2]), x4[2])), ≥))
(16) (x4[2] + [-1] ≥ 0∧x4[2] ≥ 0∧x2[2] + [-1] ≥ 0 ⇒ (UIncreasing(COND_717_1_CREATELIST_INVOKEMETHOD(&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1))), 717_0_random_IntArithmetic(x2[2]), x4[2])), ≥)∧[(-1)bni_32 + (-1)Bound*bni_32] + [bni_32]x4[2] ≥ 0∧[(-1)bso_33] ≥ 0)
(17) (x4[2] + [-1] ≥ 0∧x4[2] ≥ 0∧x2[2] + [-1] ≥ 0 ⇒ (UIncreasing(COND_717_1_CREATELIST_INVOKEMETHOD(&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1))), 717_0_random_IntArithmetic(x2[2]), x4[2])), ≥)∧[(-1)bni_32 + (-1)Bound*bni_32] + [bni_32]x4[2] ≥ 0∧[(-1)bso_33] ≥ 0)
(18) (x4[2] + [-1] ≥ 0∧x4[2] ≥ 0∧x2[2] + [-1] ≥ 0 ⇒ (UIncreasing(COND_717_1_CREATELIST_INVOKEMETHOD(&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1))), 717_0_random_IntArithmetic(x2[2]), x4[2])), ≥)∧[(-1)bni_32 + (-1)Bound*bni_32] + [bni_32]x4[2] ≥ 0∧[(-1)bso_33] ≥ 0)
(19) (x4[2] ≥ 0∧[1] + x4[2] ≥ 0∧x2[2] + [-1] ≥ 0 ⇒ (UIncreasing(COND_717_1_CREATELIST_INVOKEMETHOD(&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1))), 717_0_random_IntArithmetic(x2[2]), x4[2])), ≥)∧[(-1)Bound*bni_32] + [bni_32]x4[2] ≥ 0∧[(-1)bso_33] ≥ 0)
(20) (x4[2] ≥ 0∧[1] + x4[2] ≥ 0∧x2[2] ≥ 0 ⇒ (UIncreasing(COND_717_1_CREATELIST_INVOKEMETHOD(&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1))), 717_0_random_IntArithmetic(x2[2]), x4[2])), ≥)∧[(-1)Bound*bni_32] + [bni_32]x4[2] ≥ 0∧[(-1)bso_33] ≥ 0)
(21) (COND_717_1_CREATELIST_INVOKEMETHOD(TRUE, 717_0_random_IntArithmetic(x2[3]), x4[3])≥NonInfC∧COND_717_1_CREATELIST_INVOKEMETHOD(TRUE, 717_0_random_IntArithmetic(x2[3]), x4[3])≥704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x5[3], x6[3])), x7[3]), -(x4[3], 1))∧(UIncreasing(704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x5[3], x6[3])), x7[3]), -(x4[3], 1))), ≥))
(22) ((UIncreasing(704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x5[3], x6[3])), x7[3]), -(x4[3], 1))), ≥)∧[(-1)bso_35] ≥ 0)
(23) ((UIncreasing(704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x5[3], x6[3])), x7[3]), -(x4[3], 1))), ≥)∧[(-1)bso_35] ≥ 0)
(24) ((UIncreasing(704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x5[3], x6[3])), x7[3]), -(x4[3], 1))), ≥)∧[(-1)bso_35] ≥ 0)
(25) ((UIncreasing(704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x5[3], x6[3])), x7[3]), -(x4[3], 1))), ≥)∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_35] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(786_1_createList_InvokeMethod(x1, x2)) = [-1]
POL(692_0_createList_Return) = [-1]
POL(-1) = [-1]
POL(896_0_createList_Return) = [-1]
POL(838_0_createList_InvokeMethod(x1)) = [-1]
POL(939_0_createList_InvokeMethod(x1, x2)) = [-1]
POL(1090_0_createList_Return) = [-1]
POL(900_0_createList_InvokeMethod(x1)) = [-1]
POL(704_1_CREATELIST_INVOKEMETHOD(x1, x2)) = [-1] + x2 + [-1]x1
POL(704_0_random_ArrayAccess(x1, x2)) = [1] + [-1]x1
POL(java.lang.Object(x1)) = x1
POL(ARRAY(x1, x2)) = [2]
POL(COND_704_1_CREATELIST_INVOKEMETHOD(x1, x2, x3)) = [-1] + x3 + [-1]x2
POL(&&(x1, x2)) = [-1]
POL(>=(x1, x2)) = [-1]
POL(1) = [1]
POL(<(x1, x2)) = [-1]
POL(717_1_CREATELIST_INVOKEMETHOD(x1, x2)) = [-1] + x2
POL(717_0_random_IntArithmetic(x1)) = x1
POL(COND_717_1_CREATELIST_INVOKEMETHOD(x1, x2, x3)) = [-1] + x3
POL(0) = 0
POL(>(x1, x2)) = [-1]
POL(<=(x1, x2)) = [-1]
POL(-(x1, x2)) = x1 + [-1]x2
COND_704_1_CREATELIST_INVOKEMETHOD(TRUE, 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1]), x3[1]) → 717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x5[1]), x3[1])
717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x2[2]), x4[2]) → COND_717_1_CREATELIST_INVOKEMETHOD(&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1))), 717_0_random_IntArithmetic(x2[2]), x4[2])
704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0]) → COND_704_1_CREATELIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0])
717_1_CREATELIST_INVOKEMETHOD(717_0_random_IntArithmetic(x2[2]), x4[2]) → COND_717_1_CREATELIST_INVOKEMETHOD(&&(&&(>=(x4[2], 0), >(x2[2], 0)), <=(0, -(x4[2], 1))), 717_0_random_IntArithmetic(x2[2]), x4[2])
COND_717_1_CREATELIST_INVOKEMETHOD(TRUE, 717_0_random_IntArithmetic(x2[3]), x4[3]) → 704_1_CREATELIST_INVOKEMETHOD(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x5[3], x6[3])), x7[3]), -(x4[3], 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 |
Boolean, Integer
(3) -> (0), if ((704_0_random_ArrayAccess(java.lang.Object(ARRAY(x5[3], x6[3])), x7[3]) →* 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]))∧(x4[3] - 1 →* x3[0]))
(2) -> (3), if ((x4[2] >= 0 && x2[2] > 0 && 0 <= x4[2] - 1 →* TRUE)∧(717_0_random_IntArithmetic(x2[2]) →* 717_0_random_IntArithmetic(x2[3]))∧(x4[2] →* x4[3]))
!= | ~ | 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 |
Boolean, Integer
(3) -> (0), if ((704_0_random_ArrayAccess(java.lang.Object(ARRAY(x5[3], x6[3])), x7[3]) →* 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]))∧(x4[3] - 1 →* x3[0]))
(0) -> (1), if ((x2[0] >= 1 && x2[0] < x0[0] →* TRUE)∧(704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]) →* 704_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1]))∧(x3[0] →* x3[1]))