0 JBC
↳1 JBCToGraph (⇒, 2170 ms)
↳2 JBCTerminationGraph
↳3 TerminationGraphToSCCProof (⇒, 0 ms)
↳4 AND
↳5 JBCTerminationSCC
↳6 SCCToIDPv1Proof (⇒, 1230 ms)
↳7 IDP
↳8 IDPNonInfProof (⇒, 1170 ms)
↳9 IDP
↳10 IDependencyGraphProof (⇔, 0 ms)
↳11 TRUE
↳12 JBCTerminationSCC
↳13 SCCToIDPv1Proof (⇒, 800 ms)
↳14 IDP
↳15 IDPtoQDPProof (⇒, 0 ms)
↳16 QDP
↳17 UsableRulesProof (⇔, 0 ms)
↳18 QDP
↳19 QReductionProof (⇔, 0 ms)
↳20 QDP
↳21 QDPSizeChangeProof (⇔, 0 ms)
↳22 YES
↳23 JBCTerminationSCC
↳24 SCCToIDPv1Proof (⇒, 3230 ms)
↳25 IDP
↳26 IDPNonInfProof (⇒, 2010 ms)
↳27 IDP
↳28 IDependencyGraphProof (⇔, 0 ms)
↳29 IDP
↳30 UsableRulesProof (⇔, 0 ms)
↳31 IDP
↳32 IDPNonInfProof (⇒, 400 ms)
↳33 IDP
↳34 IDependencyGraphProof (⇔, 0 ms)
↳35 TRUE
↳36 JBCTerminationSCC
↳37 SCCToIDPv1Proof (⇒, 160 ms)
↳38 IDP
↳39 IDPNonInfProof (⇒, 120 ms)
↳40 AND
↳41 IDP
↳42 IDependencyGraphProof (⇔, 0 ms)
↳43 TRUE
↳44 IDP
↳45 IDependencyGraphProof (⇔, 0 ms)
↳46 TRUE
↳47 JBCTerminationSCC
↳48 SCCToIDPv1Proof (⇒, 170 ms)
↳49 IDP
↳50 IDPNonInfProof (⇒, 130 ms)
↳51 AND
↳52 IDP
↳53 IDependencyGraphProof (⇔, 0 ms)
↳54 TRUE
↳55 IDP
↳56 IDependencyGraphProof (⇔, 0 ms)
↳57 TRUE
↳58 JBCTerminationSCC
↳59 SCCToIDPv1Proof (⇒, 210 ms)
↳60 IDP
↳61 IDPNonInfProof (⇒, 80 ms)
↳62 AND
↳63 IDP
↳64 IDependencyGraphProof (⇔, 0 ms)
↳65 TRUE
↳66 IDP
↳67 IDependencyGraphProof (⇔, 0 ms)
↳68 TRUE
public class Test8 {
public static void main(String[] args) {
List[] ls = { List.mk(args.length), List.mk(args.length), List.mk(args.length) };
test(ls, ls.length - 1);
}
private static void test(List[] ls, int start) {
if (start >= 0) {
int len = length(ls[start]);
for (int i = 0; i < len; i++)
bubble(ls[start]);
test(ls, start - 1);
}
}
private static void bubble(List l) {
if (l == null || l.getTail() == null)
return;
if (l.head > l.getTail().head) {
int temp = l.head;
l.head = l.getTail().head;
l.getTail().head = temp;
}
bubble(l.getTail());
}
private static int length(List list) {
if (list == null)
return 0;
else
return 1 + length(list.getTail());
}
}
public class List {
public int head;
private List tail;
public List(int head, List tail) {
this.head = head;
this.tail = tail;
}
public List getTail() {
return tail;
}
public static List mk(int len) {
List result = null;
while (len-- > 0)
result = new List(len, result);
return result;
}
}
Generated 82 rules for P and 11 rules for R.
P rules:
4266_0_bubble_NULL(EOS(STATIC_4266), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4267_0_bubble_NULL(EOS(STATIC_4267), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4267_0_bubble_NULL(EOS(STATIC_4267), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4270_0_bubble_Load(EOS(STATIC_4270), java.lang.Object(o6420sub))
4270_0_bubble_Load(EOS(STATIC_4270), java.lang.Object(o6420sub)) → 4272_0_bubble_InvokeMethod(EOS(STATIC_4272), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4272_0_bubble_InvokeMethod(EOS(STATIC_4272), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4275_0_getTail_Load(EOS(STATIC_4275), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4275_0_getTail_Load(EOS(STATIC_4275), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4286_0_getTail_FieldAccess(EOS(STATIC_4286), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4286_0_getTail_FieldAccess(EOS(STATIC_4286), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4291_0_getTail_FieldAccess(EOS(STATIC_4291), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4286_0_getTail_FieldAccess(EOS(STATIC_4286), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4292_0_getTail_FieldAccess(EOS(STATIC_4292), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4291_0_getTail_FieldAccess(EOS(STATIC_4291), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4295_0_getTail_FieldAccess(EOS(STATIC_4295), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4291_0_getTail_FieldAccess(EOS(STATIC_4291), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4296_0_getTail_FieldAccess(EOS(STATIC_4296), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4295_0_getTail_FieldAccess(EOS(STATIC_4295), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4307_0_getTail_FieldAccess(EOS(STATIC_4307), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4295_0_getTail_FieldAccess(EOS(STATIC_4295), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4308_0_getTail_FieldAccess(EOS(STATIC_4308), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4307_0_getTail_FieldAccess(EOS(STATIC_4307), java.lang.Object(List(o6469sub, o6470, i2060)), java.lang.Object(List(o6469sub, o6470, i2060)), java.lang.Object(List(o6469sub, o6470, i2060))) → 4313_0_getTail_FieldAccess(EOS(STATIC_4313), java.lang.Object(List(o6469sub, o6470, i2060)), java.lang.Object(List(o6469sub, o6470, i2060)), java.lang.Object(List(o6469sub, o6470, i2060)))
4313_0_getTail_FieldAccess(EOS(STATIC_4313), java.lang.Object(List(o6469sub, o6470, i2060)), java.lang.Object(List(o6469sub, o6470, i2060)), java.lang.Object(List(o6469sub, o6470, i2060))) → 4324_0_getTail_Return(EOS(STATIC_4324), java.lang.Object(List(o6469sub, o6470, i2060)), java.lang.Object(List(o6469sub, o6470, i2060)), o6470)
4324_0_getTail_Return(EOS(STATIC_4324), java.lang.Object(List(o6469sub, o6470, i2060)), java.lang.Object(List(o6469sub, o6470, i2060)), o6470) → 4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(o6469sub, o6470, i2060)), o6470)
4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), java.lang.Object(o6520sub)) → 4339_0_bubble_NONNULL(EOS(STATIC_4339), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), java.lang.Object(o6520sub))
4339_0_bubble_NONNULL(EOS(STATIC_4339), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), java.lang.Object(o6520sub)) → 4344_0_bubble_Load(EOS(STATIC_4344), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)))
4344_0_bubble_Load(EOS(STATIC_4344), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060))) → 4349_0_bubble_FieldAccess(EOS(STATIC_4349), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)))
4349_0_bubble_FieldAccess(EOS(STATIC_4349), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060))) → 4354_0_bubble_Load(EOS(STATIC_4354), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060)
4354_0_bubble_Load(EOS(STATIC_4354), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060) → 4358_0_bubble_InvokeMethod(EOS(STATIC_4358), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)))
4358_0_bubble_InvokeMethod(EOS(STATIC_4358), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060))) → 4362_0_getTail_Load(EOS(STATIC_4362), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)))
4362_0_getTail_Load(EOS(STATIC_4362), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060))) → 4367_0_getTail_FieldAccess(EOS(STATIC_4367), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)))
4367_0_getTail_FieldAccess(EOS(STATIC_4367), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060))) → 4373_0_getTail_Return(EOS(STATIC_4373), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), java.lang.Object(o6520sub))
4373_0_getTail_Return(EOS(STATIC_4373), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), java.lang.Object(o6520sub)) → 4378_0_bubble_FieldAccess(EOS(STATIC_4378), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub))
4378_0_bubble_FieldAccess(EOS(STATIC_4378), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub)) → 4383_0_bubble_FieldAccess(EOS(STATIC_4383), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub))
4378_0_bubble_FieldAccess(EOS(STATIC_4378), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub)) → 4384_0_bubble_FieldAccess(EOS(STATIC_4384), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub))
4383_0_bubble_FieldAccess(EOS(STATIC_4383), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub)) → 4392_0_bubble_FieldAccess(EOS(STATIC_4392), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub))
4383_0_bubble_FieldAccess(EOS(STATIC_4383), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub)) → 4393_0_bubble_FieldAccess(EOS(STATIC_4393), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub))
4392_0_bubble_FieldAccess(EOS(STATIC_4392), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub)) → 4406_0_bubble_FieldAccess(EOS(STATIC_4406), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub))
4392_0_bubble_FieldAccess(EOS(STATIC_4392), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub)) → 4407_0_bubble_FieldAccess(EOS(STATIC_4407), java.lang.Object(List(o6469sub, java.lang.Object(o6520sub), i2060)), i2060, java.lang.Object(o6520sub))
4406_0_bubble_FieldAccess(EOS(STATIC_4406), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(EOC, o6597, i2075))) → 4420_0_bubble_FieldAccess(EOS(STATIC_4420), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(EOC, o6597, i2075)))
4420_0_bubble_FieldAccess(EOS(STATIC_4420), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(EOC, o6597, i2075))) → 4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, i2075)
4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, i2075) → 4445_0_bubble_LE(EOS(STATIC_4445), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, i2075)
4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, i2075) → 4446_0_bubble_LE(EOS(STATIC_4446), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, i2075)
4445_0_bubble_LE(EOS(STATIC_4445), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, i2075) → 4448_0_bubble_Load(EOS(STATIC_4448), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060))) | <=(i2060, i2075)
4448_0_bubble_Load(EOS(STATIC_4448), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060))) → 4534_0_bubble_Load(EOS(STATIC_4534), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)))
4534_0_bubble_Load(EOS(STATIC_4534), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075))) → 4537_0_bubble_InvokeMethod(EOS(STATIC_4537), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075)))
4537_0_bubble_InvokeMethod(EOS(STATIC_4537), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075))) → 4541_0_getTail_Load(EOS(STATIC_4541), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075)))
4541_0_getTail_Load(EOS(STATIC_4541), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075))) → 4543_0_getTail_FieldAccess(EOS(STATIC_4543), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075)))
4543_0_getTail_FieldAccess(EOS(STATIC_4543), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075))) → 4545_0_getTail_Return(EOS(STATIC_4545), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075)), java.lang.Object(List(EOC, o6597, i2060)))
4545_0_getTail_Return(EOS(STATIC_4545), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075)), java.lang.Object(List(EOC, o6597, i2060))) → 4546_0_bubble_InvokeMethod(EOS(STATIC_4546), java.lang.Object(List(EOC, o6597, i2060)))
4546_0_bubble_InvokeMethod(EOS(STATIC_4546), java.lang.Object(List(EOC, o6597, i2060))) → 4548_1_bubble_InvokeMethod(4548_0_bubble_Load(EOS(STATIC_4548), java.lang.Object(List(EOC, o6597, i2060))), java.lang.Object(List(EOC, o6597, i2060)))
4548_0_bubble_Load(EOS(STATIC_4548), java.lang.Object(List(EOC, o6597, i2060))) → 4549_0_bubble_Load(EOS(STATIC_4549), java.lang.Object(List(EOC, o6597, i2060)))
4549_0_bubble_Load(EOS(STATIC_4549), java.lang.Object(List(EOC, o6597, i2060))) → 4265_0_bubble_Load(EOS(STATIC_4265), java.lang.Object(List(EOC, o6597, i2060)))
4265_0_bubble_Load(EOS(STATIC_4265), o6413) → 4266_0_bubble_NULL(EOS(STATIC_4266), o6413, o6413)
4446_0_bubble_LE(EOS(STATIC_4446), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, i2075) → 4450_0_bubble_Load(EOS(STATIC_4450), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060))) | >(i2060, i2075)
4450_0_bubble_Load(EOS(STATIC_4450), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060))) → 4457_0_bubble_FieldAccess(EOS(STATIC_4457), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)))
4457_0_bubble_FieldAccess(EOS(STATIC_4457), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060))) → 4459_0_bubble_Store(EOS(STATIC_4459), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060)
4459_0_bubble_Store(EOS(STATIC_4459), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060) → 4461_0_bubble_Load(EOS(STATIC_4461), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060)
4461_0_bubble_Load(EOS(STATIC_4461), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060) → 4463_0_bubble_Load(EOS(STATIC_4463), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)))
4463_0_bubble_Load(EOS(STATIC_4463), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060))) → 4467_0_bubble_InvokeMethod(EOS(STATIC_4467), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)))
4467_0_bubble_InvokeMethod(EOS(STATIC_4467), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060))) → 4469_0_getTail_Load(EOS(STATIC_4469), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)))
4469_0_getTail_Load(EOS(STATIC_4469), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060))) → 4474_0_getTail_FieldAccess(EOS(STATIC_4474), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)))
4474_0_getTail_FieldAccess(EOS(STATIC_4474), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060))) → 4476_0_getTail_Return(EOS(STATIC_4476), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(EOC, o6597, i2075)))
4476_0_getTail_Return(EOS(STATIC_4476), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(EOC, o6597, i2075))) → 4482_0_bubble_FieldAccess(EOS(STATIC_4482), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(EOC, o6597, i2075)))
4482_0_bubble_FieldAccess(EOS(STATIC_4482), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), java.lang.Object(List(EOC, o6597, i2075))) → 4486_0_bubble_FieldAccess(EOS(STATIC_4486), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2075)
4486_0_bubble_FieldAccess(EOS(STATIC_4486), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2060)), i2075) → 4489_0_bubble_Load(EOS(STATIC_4489), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060)
4489_0_bubble_Load(EOS(STATIC_4489), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060) → 4491_0_bubble_InvokeMethod(EOS(STATIC_4491), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)))
4491_0_bubble_InvokeMethod(EOS(STATIC_4491), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075))) → 4495_0_getTail_Load(EOS(STATIC_4495), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)))
4495_0_getTail_Load(EOS(STATIC_4495), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075))) → 4503_0_getTail_FieldAccess(EOS(STATIC_4503), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)))
4503_0_getTail_FieldAccess(EOS(STATIC_4503), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075))) → 4508_0_getTail_Return(EOS(STATIC_4508), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), java.lang.Object(List(EOC, o6597, i2075)))
4508_0_getTail_Return(EOS(STATIC_4508), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060, java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), java.lang.Object(List(EOC, o6597, i2075))) → 4515_0_bubble_Load(EOS(STATIC_4515), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060, java.lang.Object(List(EOC, o6597, i2075)))
4515_0_bubble_Load(EOS(STATIC_4515), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), i2060, java.lang.Object(List(EOC, o6597, i2075))) → 4525_0_bubble_FieldAccess(EOS(STATIC_4525), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), java.lang.Object(List(EOC, o6597, i2075)), i2060)
4525_0_bubble_FieldAccess(EOS(STATIC_4525), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2075)), i2075)), java.lang.Object(List(EOC, o6597, i2075)), i2060) → 4534_0_bubble_Load(EOS(STATIC_4534), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6597, i2060)), i2075)))
4407_0_bubble_FieldAccess(EOS(STATIC_4407), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6599, i2076)), i2060)), i2060, java.lang.Object(List(EOC, o6599, i2076))) → 4421_0_bubble_FieldAccess(EOS(STATIC_4421), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6599, i2076)), i2060)), i2060, java.lang.Object(List(EOC, o6599, i2076)))
4421_0_bubble_FieldAccess(EOS(STATIC_4421), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6599, i2076)), i2060)), i2060, java.lang.Object(List(EOC, o6599, i2076))) → 4438_0_bubble_LE(EOS(STATIC_4438), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6599, i2076)), i2060)), i2060, i2076)
4438_0_bubble_LE(EOS(STATIC_4438), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6599, i2076)), i2060)), i2060, i2076) → 4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6599, i2076)), i2060)), i2060, i2076)
4393_0_bubble_FieldAccess(EOS(STATIC_4393), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6576, i2073)), i2060)), i2060, java.lang.Object(List(EOC, o6576, i2073))) → 4408_0_bubble_FieldAccess(EOS(STATIC_4408), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6576, i2073)), i2060)), i2060, java.lang.Object(List(EOC, o6576, i2073)))
4408_0_bubble_FieldAccess(EOS(STATIC_4408), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6576, i2073)), i2060)), i2060, java.lang.Object(List(EOC, o6576, i2073))) → 4424_0_bubble_LE(EOS(STATIC_4424), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6576, i2073)), i2060)), i2060, i2073)
4424_0_bubble_LE(EOS(STATIC_4424), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6576, i2073)), i2060)), i2060, i2073) → 4410_0_bubble_LE(EOS(STATIC_4410), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6576, i2073)), i2060)), i2060, i2073)
4410_0_bubble_LE(EOS(STATIC_4410), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6562, i2070)), i2060)), i2060, i2070) → 4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6562, i2070)), i2060)), i2060, i2070)
4384_0_bubble_FieldAccess(EOS(STATIC_4384), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6562, i2070)), i2060)), i2060, java.lang.Object(List(EOC, o6562, i2070))) → 4394_0_bubble_FieldAccess(EOS(STATIC_4394), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6562, i2070)), i2060)), i2060, java.lang.Object(List(EOC, o6562, i2070)))
4394_0_bubble_FieldAccess(EOS(STATIC_4394), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6562, i2070)), i2060)), i2060, java.lang.Object(List(EOC, o6562, i2070))) → 4410_0_bubble_LE(EOS(STATIC_4410), java.lang.Object(List(o6469sub, java.lang.Object(List(EOC, o6562, i2070)), i2060)), i2060, i2070)
4308_0_getTail_FieldAccess(EOS(STATIC_4308), java.lang.Object(List(EOC, o6473, i2061)), java.lang.Object(List(EOC, o6473, i2061)), java.lang.Object(List(EOC, o6473, i2061))) → 4314_0_getTail_FieldAccess(EOS(STATIC_4314), java.lang.Object(List(EOC, o6473, i2061)), java.lang.Object(List(EOC, o6473, i2061)), java.lang.Object(List(EOC, o6473, i2061)))
4314_0_getTail_FieldAccess(EOS(STATIC_4314), java.lang.Object(List(EOC, o6473, i2061)), java.lang.Object(List(EOC, o6473, i2061)), java.lang.Object(List(EOC, o6473, i2061))) → 4326_0_getTail_Return(EOS(STATIC_4326), java.lang.Object(List(EOC, o6473, i2061)), java.lang.Object(List(EOC, o6473, i2061)), o6473)
4326_0_getTail_Return(EOS(STATIC_4326), java.lang.Object(List(EOC, o6473, i2061)), java.lang.Object(List(EOC, o6473, i2061)), o6473) → 4334_0_bubble_NONNULL(EOS(STATIC_4334), java.lang.Object(List(EOC, o6473, i2061)), o6473)
4334_0_bubble_NONNULL(EOS(STATIC_4334), java.lang.Object(List(EOC, o6473, i2061)), o6473) → 4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(EOC, o6473, i2061)), o6473)
4296_0_getTail_FieldAccess(EOS(STATIC_4296), java.lang.Object(List(EOC, o6464, i2059)), java.lang.Object(List(EOC, o6464, i2059)), java.lang.Object(List(EOC, o6464, i2059))) → 4309_0_getTail_FieldAccess(EOS(STATIC_4309), java.lang.Object(List(EOC, o6464, i2059)), java.lang.Object(List(EOC, o6464, i2059)), java.lang.Object(List(EOC, o6464, i2059)))
4309_0_getTail_FieldAccess(EOS(STATIC_4309), java.lang.Object(List(EOC, o6464, i2059)), java.lang.Object(List(EOC, o6464, i2059)), java.lang.Object(List(EOC, o6464, i2059))) → 4317_0_getTail_Return(EOS(STATIC_4317), java.lang.Object(List(EOC, o6464, i2059)), java.lang.Object(List(EOC, o6464, i2059)), o6464)
4317_0_getTail_Return(EOS(STATIC_4317), java.lang.Object(List(EOC, o6464, i2059)), java.lang.Object(List(EOC, o6464, i2059)), o6464) → 4324_0_getTail_Return(EOS(STATIC_4324), java.lang.Object(List(EOC, o6464, i2059)), java.lang.Object(List(EOC, o6464, i2059)), o6464)
4292_0_getTail_FieldAccess(EOS(STATIC_4292), java.lang.Object(List(EOC, o6444, i2056)), java.lang.Object(List(EOC, o6444, i2056)), java.lang.Object(List(EOC, o6444, i2056))) → 4297_0_getTail_FieldAccess(EOS(STATIC_4297), java.lang.Object(List(EOC, o6444, i2056)), java.lang.Object(List(EOC, o6444, i2056)), java.lang.Object(List(EOC, o6444, i2056)))
4297_0_getTail_FieldAccess(EOS(STATIC_4297), java.lang.Object(List(EOC, o6444, i2056)), java.lang.Object(List(EOC, o6444, i2056)), java.lang.Object(List(EOC, o6444, i2056))) → 4310_0_getTail_Return(EOS(STATIC_4310), java.lang.Object(List(EOC, o6444, i2056)), java.lang.Object(List(EOC, o6444, i2056)), o6444)
4310_0_getTail_Return(EOS(STATIC_4310), java.lang.Object(List(EOC, o6444, i2056)), java.lang.Object(List(EOC, o6444, i2056)), o6444) → 4317_0_getTail_Return(EOS(STATIC_4317), java.lang.Object(List(EOC, o6444, i2056)), java.lang.Object(List(EOC, o6444, i2056)), o6444)
R rules:
4266_0_bubble_NULL(EOS(STATIC_4266), NULL, NULL) → 4268_0_bubble_NULL(EOS(STATIC_4268), NULL, NULL)
4268_0_bubble_NULL(EOS(STATIC_4268), NULL, NULL) → 4271_0_bubble_Return(EOS(STATIC_4271), NULL)
4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(o6469sub, NULL, i2060)), NULL) → 4340_0_bubble_NONNULL(EOS(STATIC_4340), java.lang.Object(List(o6469sub, NULL, i2060)), NULL)
4340_0_bubble_NONNULL(EOS(STATIC_4340), java.lang.Object(List(o6469sub, NULL, i2060)), NULL) → 4345_0_bubble_Return(EOS(STATIC_4345), java.lang.Object(List(o6469sub, NULL, i2060)))
4548_1_bubble_InvokeMethod(4345_0_bubble_Return(EOS(STATIC_4345), java.lang.Object(List(EOC, NULL, i2146))), java.lang.Object(List(EOC, NULL, i2146))) → 4555_0_bubble_Return(EOS(STATIC_4555), java.lang.Object(List(EOC, NULL, i2146)), java.lang.Object(List(EOC, NULL, i2146)))
4548_1_bubble_InvokeMethod(4556_0_bubble_Return(EOS(STATIC_4556)), java.lang.Object(List(EOC, o6597, i2060))) → 4564_0_bubble_Return(EOS(STATIC_4564), java.lang.Object(List(EOC, java.lang.Object(List(EOC, NULL, i2146)), i2147)))
4548_1_bubble_InvokeMethod(4577_0_bubble_Return(EOS(STATIC_4577)), java.lang.Object(List(EOC, o6597, i2060))) → 4587_0_bubble_Return(EOS(STATIC_4587), java.lang.Object(List(EOC, java.lang.Object(List(EOC, java.lang.Object(List(EOC, o6915, i2155)), i2154)), i2162)))
4555_0_bubble_Return(EOS(STATIC_4555), java.lang.Object(List(EOC, NULL, i2146)), java.lang.Object(List(EOC, NULL, i2146))) → 4556_0_bubble_Return(EOS(STATIC_4556))
4564_0_bubble_Return(EOS(STATIC_4564), java.lang.Object(List(EOC, java.lang.Object(List(EOC, NULL, i2146)), i2147))) → 4575_0_bubble_Return(EOS(STATIC_4575), java.lang.Object(List(EOC, java.lang.Object(List(EOC, NULL, i2146)), i2147)))
4575_0_bubble_Return(EOS(STATIC_4575), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o6915, i2155)), i2154))) → 4577_0_bubble_Return(EOS(STATIC_4577))
4587_0_bubble_Return(EOS(STATIC_4587), java.lang.Object(List(EOC, java.lang.Object(List(EOC, java.lang.Object(List(EOC, o6915, i2155)), i2154)), i2162))) → 4575_0_bubble_Return(EOS(STATIC_4575), java.lang.Object(List(EOC, java.lang.Object(List(EOC, java.lang.Object(List(EOC, o6915, i2155)), i2154)), i2162)))
Combined rules. Obtained 4 conditional rules for P and 4 conditional rules for R.
P rules:
4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(x0, java.lang.Object(List(EOC, x1, x2)), x3)), x3, x2) → 4548_1_bubble_InvokeMethod(4266_0_bubble_NULL(EOS(STATIC_4266), java.lang.Object(List(EOC, x1, x2)), java.lang.Object(List(EOC, x1, x2))), java.lang.Object(List(EOC, x1, x2))) | <=(x3, x2)
4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(x0, java.lang.Object(List(EOC, x1, x2)), x3)), x3, x2) → 4548_1_bubble_InvokeMethod(4266_0_bubble_NULL(EOS(STATIC_4266), java.lang.Object(List(EOC, x1, x3)), java.lang.Object(List(EOC, x1, x3))), java.lang.Object(List(EOC, x1, x3))) | >(x3, x2)
4266_0_bubble_NULL(EOS(STATIC_4266), java.lang.Object(List(x0, java.lang.Object(List(EOC, x1, x2)), x3)), java.lang.Object(List(x0, java.lang.Object(List(EOC, x1, x2)), x3))) → 4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(x0, java.lang.Object(List(EOC, x1, x2)), x3)), x3, x2)
4266_0_bubble_NULL(EOS(STATIC_4266), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0, x1)), x2)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0, x1)), x2))) → 4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0, x1)), x2)), x2, x1)
R rules:
4266_0_bubble_NULL(EOS(STATIC_4266), NULL, NULL) → 4271_0_bubble_Return(EOS(STATIC_4271), NULL)
4548_1_bubble_InvokeMethod(4345_0_bubble_Return(EOS(STATIC_4345), java.lang.Object(List(EOC, NULL, x0))), java.lang.Object(List(EOC, NULL, x0))) → 4556_0_bubble_Return(EOS(STATIC_4556))
4548_1_bubble_InvokeMethod(4556_0_bubble_Return(EOS(STATIC_4556)), java.lang.Object(List(EOC, x0, x1))) → 4577_0_bubble_Return(EOS(STATIC_4577))
4548_1_bubble_InvokeMethod(4577_0_bubble_Return(EOS(STATIC_4577)), java.lang.Object(List(EOC, x0, x1))) → 4577_0_bubble_Return(EOS(STATIC_4577))
Filtered ground terms:
4434_0_bubble_LE(x1, x2, x3, x4) → 4434_0_bubble_LE(x2, x3, x4)
4266_0_bubble_NULL(x1, x2, x3) → 4266_0_bubble_NULL(x2, x3)
Cond_4434_0_bubble_LE1(x1, x2, x3, x4, x5) → Cond_4434_0_bubble_LE1(x1, x3, x4, x5)
Cond_4434_0_bubble_LE(x1, x2, x3, x4, x5) → Cond_4434_0_bubble_LE(x1, x3, x4, x5)
4577_0_bubble_Return(x1) → 4577_0_bubble_Return
4556_0_bubble_Return(x1) → 4556_0_bubble_Return
4345_0_bubble_Return(x1, x2) → 4345_0_bubble_Return(x2)
4271_0_bubble_Return(x1, x2) → 4271_0_bubble_Return
Filtered duplicate args:
4434_0_bubble_LE(x1, x2, x3) → 4434_0_bubble_LE(x1)
Cond_4434_0_bubble_LE(x1, x2, x3, x4) → Cond_4434_0_bubble_LE(x1, x2)
4266_0_bubble_NULL(x1, x2) → 4266_0_bubble_NULL(x2)
Cond_4434_0_bubble_LE1(x1, x2, x3, x4) → Cond_4434_0_bubble_LE1(x1, x2)
Combined rules. Obtained 4 conditional rules for P and 4 conditional rules for R.
P rules:
4434_0_bubble_LE(java.lang.Object(List(x0, java.lang.Object(List(EOC, x1, x2)), x3))) → 4548_1_bubble_InvokeMethod(4266_0_bubble_NULL(java.lang.Object(List(EOC, x1, x2))), java.lang.Object(List(EOC, x1, x2))) | <=(x3, x2)
4434_0_bubble_LE(java.lang.Object(List(x0, java.lang.Object(List(EOC, x1, x2)), x3))) → 4548_1_bubble_InvokeMethod(4266_0_bubble_NULL(java.lang.Object(List(EOC, x1, x3))), java.lang.Object(List(EOC, x1, x3))) | >(x3, x2)
4266_0_bubble_NULL(java.lang.Object(List(x0, java.lang.Object(List(EOC, x1, x2)), x3))) → 4434_0_bubble_LE(java.lang.Object(List(x0, java.lang.Object(List(EOC, x1, x2)), x3)))
4266_0_bubble_NULL(java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0, x1)), x2))) → 4434_0_bubble_LE(java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0, x1)), x2)))
R rules:
4266_0_bubble_NULL(NULL) → 4271_0_bubble_Return
4548_1_bubble_InvokeMethod(4345_0_bubble_Return(java.lang.Object(List(EOC, NULL, x0))), java.lang.Object(List(EOC, NULL, x0))) → 4556_0_bubble_Return
4548_1_bubble_InvokeMethod(4556_0_bubble_Return, java.lang.Object(List(EOC, x0, x1))) → 4577_0_bubble_Return
4548_1_bubble_InvokeMethod(4577_0_bubble_Return, java.lang.Object(List(EOC, x0, x1))) → 4577_0_bubble_Return
Performed bisimulation on rules. Used the following equivalence classes: {[4271_0_bubble_Return, EOC, 4556_0_bubble_Return, 4577_0_bubble_Return]=4271_0_bubble_Return}
Finished conversion. Obtained 6 rules for P and 3 rules for R. System has predefined symbols.
P rules:
4434_0_BUBBLE_LE(java.lang.Object(List(x0, java.lang.Object(List(4271_0_bubble_Return, x1, x2)), x3))) → COND_4434_0_BUBBLE_LE(<=(x3, x2), java.lang.Object(List(x0, java.lang.Object(List(4271_0_bubble_Return, x1, x2)), x3)))
COND_4434_0_BUBBLE_LE(TRUE, java.lang.Object(List(x0, java.lang.Object(List(4271_0_bubble_Return, x1, x2)), x3))) → 4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1, x2)))
4434_0_BUBBLE_LE(java.lang.Object(List(x0, java.lang.Object(List(4271_0_bubble_Return, x1, x2)), x3))) → COND_4434_0_BUBBLE_LE1(>(x3, x2), java.lang.Object(List(x0, java.lang.Object(List(4271_0_bubble_Return, x1, x2)), x3)))
COND_4434_0_BUBBLE_LE1(TRUE, java.lang.Object(List(x0, java.lang.Object(List(4271_0_bubble_Return, x1, x2)), x3))) → 4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1, x3)))
4266_0_BUBBLE_NULL(java.lang.Object(List(x0, java.lang.Object(List(4271_0_bubble_Return, x1, x2)), x3))) → 4434_0_BUBBLE_LE(java.lang.Object(List(x0, java.lang.Object(List(4271_0_bubble_Return, x1, x2)), x3)))
4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0, x1)), x2))) → 4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0, x1)), x2)))
R rules:
4266_0_bubble_NULL(NULL) → 4271_0_bubble_Return
4548_1_bubble_InvokeMethod(4345_0_bubble_Return(java.lang.Object(List(4271_0_bubble_Return, NULL, x0))), java.lang.Object(List(4271_0_bubble_Return, NULL, x0))) → 4271_0_bubble_Return
4548_1_bubble_InvokeMethod(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0, x1))) → 4271_0_bubble_Return
!= | ~ | 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 (x3[0] <= x2[0] ∧java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])) →* java.lang.Object(List(x0[1], java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])), x3[1])))
(1) -> (4), if (java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])) →* java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))
(1) -> (5), if (java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])) →* java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))
(2) -> (3), if (x3[2] > x2[2] ∧java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])) →* java.lang.Object(List(x0[3], java.lang.Object(List(4271_0_bubble_Return, x1[3], x2[3])), x3[3])))
(3) -> (4), if (java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])) →* java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))
(3) -> (5), if (java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])) →* java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))
(4) -> (0), if (java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])) →* java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))
(4) -> (2), if (java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])) →* java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))
(5) -> (0), if (java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])) →* java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))
(5) -> (2), if (java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])) →* java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))
(1) (<=(x3[0], x2[0])=TRUE∧java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0]))=java.lang.Object(List(x0[1], java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])), x3[1])) ⇒ 4434_0_BUBBLE_LE(java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))≥NonInfC∧4434_0_BUBBLE_LE(java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))≥COND_4434_0_BUBBLE_LE(<=(x3[0], x2[0]), java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))∧(UIncreasing(COND_4434_0_BUBBLE_LE(<=(x3[0], x2[0]), java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))), ≥))
(2) (<=(x3[0], x2[0])=TRUE ⇒ 4434_0_BUBBLE_LE(java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))≥NonInfC∧4434_0_BUBBLE_LE(java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))≥COND_4434_0_BUBBLE_LE(<=(x3[0], x2[0]), java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))∧(UIncreasing(COND_4434_0_BUBBLE_LE(<=(x3[0], x2[0]), java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))), ≥))
(3) (0 ≥ 0 ⇒ (UIncreasing(COND_4434_0_BUBBLE_LE(<=(x3[0], x2[0]), java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))), ≥)∧[(2)bni_26 + (-1)Bound*bni_26] + [(4)bni_26]x1[0] ≥ 0∧[(-1)bso_27] ≥ 0)
(4) (0 ≥ 0 ⇒ (UIncreasing(COND_4434_0_BUBBLE_LE(<=(x3[0], x2[0]), java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))), ≥)∧[(2)bni_26 + (-1)Bound*bni_26] + [(4)bni_26]x1[0] ≥ 0∧[(-1)bso_27] ≥ 0)
(5) (0 ≥ 0 ⇒ (UIncreasing(COND_4434_0_BUBBLE_LE(<=(x3[0], x2[0]), java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))), ≥)∧[(2)bni_26 + (-1)Bound*bni_26] + [(4)bni_26]x1[0] ≥ 0∧[(-1)bso_27] ≥ 0)
(6) (0 ≥ 0 ⇒ (UIncreasing(COND_4434_0_BUBBLE_LE(<=(x3[0], x2[0]), java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))), ≥)∧0 ≥ 0∧0 ≥ 0∧[(4)bni_26] ≥ 0∧0 ≥ 0∧[(2)bni_26 + (-1)Bound*bni_26] ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(-1)bso_27] ≥ 0)
(7) (<=(x3[0], x2[0])=TRUE∧java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0]))=java.lang.Object(List(x0[1], java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])), x3[1]))∧java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1]))=java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])) ⇒ COND_4434_0_BUBBLE_LE(TRUE, java.lang.Object(List(x0[1], java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])), x3[1])))≥NonInfC∧COND_4434_0_BUBBLE_LE(TRUE, java.lang.Object(List(x0[1], java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])), x3[1])))≥4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))∧(UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥))
(8) (<=(x3[0], x2[0])=TRUE ⇒ COND_4434_0_BUBBLE_LE(TRUE, java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x2[0])), x3[0])))≥NonInfC∧COND_4434_0_BUBBLE_LE(TRUE, java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x2[0])), x3[0])))≥4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x2[0])))∧(UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥))
(9) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥)∧[(6)bni_28 + (-1)Bound*bni_28] + [(8)bni_28]x1[4] ≥ 0∧[4 + (-1)bso_29] + [4]x1[4] ≥ 0)
(10) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥)∧[(6)bni_28 + (-1)Bound*bni_28] + [(8)bni_28]x1[4] ≥ 0∧[4 + (-1)bso_29] + [4]x1[4] ≥ 0)
(11) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥)∧[(6)bni_28 + (-1)Bound*bni_28] + [(8)bni_28]x1[4] ≥ 0∧[4 + (-1)bso_29] + [4]x1[4] ≥ 0)
(12) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥)∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(8)bni_28] ≥ 0∧0 ≥ 0∧[(6)bni_28 + (-1)Bound*bni_28] ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[4 + (-1)bso_29] ≥ 0∧[1] ≥ 0)
(13) (<=(x3[0], x2[0])=TRUE∧java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0]))=java.lang.Object(List(x0[1], java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])), x3[1]))∧java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1]))=java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])) ⇒ COND_4434_0_BUBBLE_LE(TRUE, java.lang.Object(List(x0[1], java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])), x3[1])))≥NonInfC∧COND_4434_0_BUBBLE_LE(TRUE, java.lang.Object(List(x0[1], java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])), x3[1])))≥4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))∧(UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥))
(14) (<=(x3[0], x2[0])=TRUE ⇒ COND_4434_0_BUBBLE_LE(TRUE, java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[0])), x3[0])))≥NonInfC∧COND_4434_0_BUBBLE_LE(TRUE, java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[0])), x3[0])))≥4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[0])))∧(UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥))
(15) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥)∧[(6)bni_28 + (-1)Bound*bni_28] + [(8)bni_28]x0[5] ≥ 0∧[4 + (-1)bso_29] + [4]x0[5] ≥ 0)
(16) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥)∧[(6)bni_28 + (-1)Bound*bni_28] + [(8)bni_28]x0[5] ≥ 0∧[4 + (-1)bso_29] + [4]x0[5] ≥ 0)
(17) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥)∧[(6)bni_28 + (-1)Bound*bni_28] + [(8)bni_28]x0[5] ≥ 0∧[4 + (-1)bso_29] + [4]x0[5] ≥ 0)
(18) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))), ≥)∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(8)bni_28] ≥ 0∧0 ≥ 0∧[(6)bni_28 + (-1)Bound*bni_28] ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[4 + (-1)bso_29] ≥ 0∧[1] ≥ 0)
(19) (>(x3[2], x2[2])=TRUE∧java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2]))=java.lang.Object(List(x0[3], java.lang.Object(List(4271_0_bubble_Return, x1[3], x2[3])), x3[3])) ⇒ 4434_0_BUBBLE_LE(java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))≥NonInfC∧4434_0_BUBBLE_LE(java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))≥COND_4434_0_BUBBLE_LE1(>(x3[2], x2[2]), java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))∧(UIncreasing(COND_4434_0_BUBBLE_LE1(>(x3[2], x2[2]), java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))), ≥))
(20) (>(x3[2], x2[2])=TRUE ⇒ 4434_0_BUBBLE_LE(java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))≥NonInfC∧4434_0_BUBBLE_LE(java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))≥COND_4434_0_BUBBLE_LE1(>(x3[2], x2[2]), java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))∧(UIncreasing(COND_4434_0_BUBBLE_LE1(>(x3[2], x2[2]), java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))), ≥))
(21) (0 ≥ 0 ⇒ (UIncreasing(COND_4434_0_BUBBLE_LE1(>(x3[2], x2[2]), java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [(4)bni_30]x1[2] ≥ 0∧[(-1)bso_31] ≥ 0)
(22) (0 ≥ 0 ⇒ (UIncreasing(COND_4434_0_BUBBLE_LE1(>(x3[2], x2[2]), java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [(4)bni_30]x1[2] ≥ 0∧[(-1)bso_31] ≥ 0)
(23) (0 ≥ 0 ⇒ (UIncreasing(COND_4434_0_BUBBLE_LE1(>(x3[2], x2[2]), java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [(4)bni_30]x1[2] ≥ 0∧[(-1)bso_31] ≥ 0)
(24) (0 ≥ 0 ⇒ (UIncreasing(COND_4434_0_BUBBLE_LE1(>(x3[2], x2[2]), java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))), ≥)∧0 ≥ 0∧0 ≥ 0∧[(4)bni_30] ≥ 0∧0 ≥ 0∧[(2)bni_30 + (-1)Bound*bni_30] ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(-1)bso_31] ≥ 0)
(25) (>(x3[2], x2[2])=TRUE∧java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2]))=java.lang.Object(List(x0[3], java.lang.Object(List(4271_0_bubble_Return, x1[3], x2[3])), x3[3]))∧java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3]))=java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])) ⇒ COND_4434_0_BUBBLE_LE1(TRUE, java.lang.Object(List(x0[3], java.lang.Object(List(4271_0_bubble_Return, x1[3], x2[3])), x3[3])))≥NonInfC∧COND_4434_0_BUBBLE_LE1(TRUE, java.lang.Object(List(x0[3], java.lang.Object(List(4271_0_bubble_Return, x1[3], x2[3])), x3[3])))≥4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))∧(UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥))
(26) (>(x3[2], x2[2])=TRUE ⇒ COND_4434_0_BUBBLE_LE1(TRUE, java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x2[2])), x3[2])))≥NonInfC∧COND_4434_0_BUBBLE_LE1(TRUE, java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x2[2])), x3[2])))≥4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[2])))∧(UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥))
(27) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥)∧[(6)bni_32 + (-1)Bound*bni_32] + [(8)bni_32]x1[4] ≥ 0∧[4 + (-1)bso_33] + [4]x1[4] ≥ 0)
(28) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥)∧[(6)bni_32 + (-1)Bound*bni_32] + [(8)bni_32]x1[4] ≥ 0∧[4 + (-1)bso_33] + [4]x1[4] ≥ 0)
(29) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥)∧[(6)bni_32 + (-1)Bound*bni_32] + [(8)bni_32]x1[4] ≥ 0∧[4 + (-1)bso_33] + [4]x1[4] ≥ 0)
(30) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥)∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(8)bni_32] ≥ 0∧0 ≥ 0∧[(6)bni_32 + (-1)Bound*bni_32] ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[4 + (-1)bso_33] ≥ 0∧[1] ≥ 0)
(31) (>(x3[2], x2[2])=TRUE∧java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2]))=java.lang.Object(List(x0[3], java.lang.Object(List(4271_0_bubble_Return, x1[3], x2[3])), x3[3]))∧java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3]))=java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])) ⇒ COND_4434_0_BUBBLE_LE1(TRUE, java.lang.Object(List(x0[3], java.lang.Object(List(4271_0_bubble_Return, x1[3], x2[3])), x3[3])))≥NonInfC∧COND_4434_0_BUBBLE_LE1(TRUE, java.lang.Object(List(x0[3], java.lang.Object(List(4271_0_bubble_Return, x1[3], x2[3])), x3[3])))≥4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))∧(UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥))
(32) (>(x3[2], x2[2])=TRUE ⇒ COND_4434_0_BUBBLE_LE1(TRUE, java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[2])), x3[2])))≥NonInfC∧COND_4434_0_BUBBLE_LE1(TRUE, java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[2])), x3[2])))≥4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x3[2])))∧(UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥))
(33) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥)∧[(6)bni_32 + (-1)Bound*bni_32] + [(8)bni_32]x0[5] ≥ 0∧[4 + (-1)bso_33] + [4]x0[5] ≥ 0)
(34) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥)∧[(6)bni_32 + (-1)Bound*bni_32] + [(8)bni_32]x0[5] ≥ 0∧[4 + (-1)bso_33] + [4]x0[5] ≥ 0)
(35) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥)∧[(6)bni_32 + (-1)Bound*bni_32] + [(8)bni_32]x0[5] ≥ 0∧[4 + (-1)bso_33] + [4]x0[5] ≥ 0)
(36) (0 ≥ 0 ⇒ (UIncreasing(4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))), ≥)∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(8)bni_32] ≥ 0∧0 ≥ 0∧[(6)bni_32 + (-1)Bound*bni_32] ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[4 + (-1)bso_33] ≥ 0∧[1] ≥ 0)
(37) (java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4]))=java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])) ⇒ 4266_0_BUBBLE_NULL(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))≥NonInfC∧4266_0_BUBBLE_NULL(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))≥4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))∧(UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥))
(38) (4266_0_BUBBLE_NULL(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))≥NonInfC∧4266_0_BUBBLE_NULL(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))≥4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))∧(UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥))
(39) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥)∧[bni_34] = 0∧[(-1)bso_35] ≥ 0)
(40) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥)∧[bni_34] = 0∧[(-1)bso_35] ≥ 0)
(41) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥)∧[bni_34] = 0∧[(-1)bso_35] ≥ 0)
(42) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥)∧[bni_34] = 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(-1)bso_35] ≥ 0)
(43) (java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4]))=java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])) ⇒ 4266_0_BUBBLE_NULL(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))≥NonInfC∧4266_0_BUBBLE_NULL(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))≥4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))∧(UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥))
(44) (4266_0_BUBBLE_NULL(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))≥NonInfC∧4266_0_BUBBLE_NULL(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))≥4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))∧(UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥))
(45) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥)∧[bni_34] = 0∧[(-1)bso_35] ≥ 0)
(46) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥)∧[bni_34] = 0∧[(-1)bso_35] ≥ 0)
(47) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥)∧[bni_34] = 0∧[(-1)bso_35] ≥ 0)
(48) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))), ≥)∧[bni_34] = 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(-1)bso_35] ≥ 0)
(49) (java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5]))=java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])) ⇒ 4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))≥NonInfC∧4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))≥4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))∧(UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥))
(50) (4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))≥NonInfC∧4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))≥4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))∧(UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥))
(51) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥)∧[bni_36] = 0∧[(-1)bso_37] ≥ 0)
(52) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥)∧[bni_36] = 0∧[(-1)bso_37] ≥ 0)
(53) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥)∧[bni_36] = 0∧[(-1)bso_37] ≥ 0)
(54) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥)∧[bni_36] = 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(-1)bso_37] ≥ 0)
(55) (java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5]))=java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])) ⇒ 4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))≥NonInfC∧4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))≥4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))∧(UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥))
(56) (4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))≥NonInfC∧4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))≥4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))∧(UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥))
(57) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥)∧[bni_36] = 0∧[(-1)bso_37] ≥ 0)
(58) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥)∧[bni_36] = 0∧[(-1)bso_37] ≥ 0)
(59) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥)∧[bni_36] = 0∧[(-1)bso_37] ≥ 0)
(60) ((UIncreasing(4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])))), ≥)∧[bni_36] = 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(-1)bso_37] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(4266_0_bubble_NULL(x1)) = 0
POL(NULL) = 0
POL(4271_0_bubble_Return) = 0
POL(4548_1_bubble_InvokeMethod(x1, x2)) = 0
POL(4345_0_bubble_Return(x1)) = 0
POL(java.lang.Object(x1)) = x1
POL(List(x1, x2, x3)) = [1] + [2]x2
POL(4434_0_BUBBLE_LE(x1)) = [-1] + x1
POL(COND_4434_0_BUBBLE_LE(x1, x2)) = [-1] + x2
POL(<=(x1, x2)) = 0
POL(4266_0_BUBBLE_NULL(x1)) = [-1] + x1
POL(COND_4434_0_BUBBLE_LE1(x1, x2)) = [-1] + x2
POL(>(x1, x2)) = 0
COND_4434_0_BUBBLE_LE(TRUE, java.lang.Object(List(x0[1], java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])), x3[1]))) → 4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))
COND_4434_0_BUBBLE_LE1(TRUE, java.lang.Object(List(x0[3], java.lang.Object(List(4271_0_bubble_Return, x1[3], x2[3])), x3[3]))) → 4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))
4434_0_BUBBLE_LE(java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0]))) → COND_4434_0_BUBBLE_LE(<=(x3[0], x2[0]), java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))
COND_4434_0_BUBBLE_LE(TRUE, java.lang.Object(List(x0[1], java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])), x3[1]))) → 4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[1], x2[1])))
4434_0_BUBBLE_LE(java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2]))) → COND_4434_0_BUBBLE_LE1(>(x3[2], x2[2]), java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))
COND_4434_0_BUBBLE_LE1(TRUE, java.lang.Object(List(x0[3], java.lang.Object(List(4271_0_bubble_Return, x1[3], x2[3])), x3[3]))) → 4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, x1[3], x3[3])))
4434_0_BUBBLE_LE(java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0]))) → COND_4434_0_BUBBLE_LE(<=(x3[0], x2[0]), java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))
4434_0_BUBBLE_LE(java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2]))) → COND_4434_0_BUBBLE_LE1(>(x3[2], x2[2]), java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))
4266_0_BUBBLE_NULL(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4]))) → 4434_0_BUBBLE_LE(java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])))
4266_0_BUBBLE_NULL(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5]))) → 4434_0_BUBBLE_LE(java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[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
(4) -> (0), if (java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])) →* java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))
(5) -> (0), if (java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])) →* java.lang.Object(List(x0[0], java.lang.Object(List(4271_0_bubble_Return, x1[0], x2[0])), x3[0])))
(4) -> (2), if (java.lang.Object(List(x0[4], java.lang.Object(List(4271_0_bubble_Return, x1[4], x2[4])), x3[4])) →* java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))
(5) -> (2), if (java.lang.Object(List(4271_0_bubble_Return, java.lang.Object(List(4271_0_bubble_Return, x0[5], x1[5])), x2[5])) →* java.lang.Object(List(x0[2], java.lang.Object(List(4271_0_bubble_Return, x1[2], x2[2])), x3[2])))
Generated 37 rules for P and 63 rules for R.
P rules:
1627_0_length_NONNULL(EOS(STATIC_1627), java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1628_0_length_NONNULL(EOS(STATIC_1628), java.lang.Object(o1071sub), java.lang.Object(o1071sub))
1628_0_length_NONNULL(EOS(STATIC_1628), java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1631_0_length_ConstantStackPush(EOS(STATIC_1631), java.lang.Object(o1071sub))
1631_0_length_ConstantStackPush(EOS(STATIC_1631), java.lang.Object(o1071sub)) → 1633_0_length_Load(EOS(STATIC_1633), java.lang.Object(o1071sub))
1633_0_length_Load(EOS(STATIC_1633), java.lang.Object(o1071sub)) → 1637_0_length_InvokeMethod(EOS(STATIC_1637), java.lang.Object(o1071sub))
1637_0_length_InvokeMethod(EOS(STATIC_1637), java.lang.Object(o1071sub)) → 1640_0_getTail_Load(EOS(STATIC_1640), java.lang.Object(o1071sub), java.lang.Object(o1071sub))
1640_0_getTail_Load(EOS(STATIC_1640), java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1647_0_getTail_FieldAccess(EOS(STATIC_1647), java.lang.Object(o1071sub), java.lang.Object(o1071sub))
1647_0_getTail_FieldAccess(EOS(STATIC_1647), java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1651_0_getTail_FieldAccess(EOS(STATIC_1651), java.lang.Object(o1071sub), java.lang.Object(o1071sub))
1647_0_getTail_FieldAccess(EOS(STATIC_1647), java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1652_0_getTail_FieldAccess(EOS(STATIC_1652), java.lang.Object(o1071sub), java.lang.Object(o1071sub))
1651_0_getTail_FieldAccess(EOS(STATIC_1651), java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1656_0_getTail_FieldAccess(EOS(STATIC_1656), java.lang.Object(o1071sub), java.lang.Object(o1071sub))
1651_0_getTail_FieldAccess(EOS(STATIC_1651), java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1657_0_getTail_FieldAccess(EOS(STATIC_1657), java.lang.Object(o1071sub), java.lang.Object(o1071sub))
1656_0_getTail_FieldAccess(EOS(STATIC_1656), java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1662_0_getTail_FieldAccess(EOS(STATIC_1662), java.lang.Object(o1071sub), java.lang.Object(o1071sub))
1656_0_getTail_FieldAccess(EOS(STATIC_1656), java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1663_0_getTail_FieldAccess(EOS(STATIC_1663), java.lang.Object(o1071sub), java.lang.Object(o1071sub))
1662_0_getTail_FieldAccess(EOS(STATIC_1662), java.lang.Object(List(o1083sub, o1084)), java.lang.Object(List(o1083sub, o1084))) → 1669_0_getTail_FieldAccess(EOS(STATIC_1669), java.lang.Object(List(o1083sub, o1084)), java.lang.Object(List(o1083sub, o1084)))
1669_0_getTail_FieldAccess(EOS(STATIC_1669), java.lang.Object(List(o1083sub, o1084)), java.lang.Object(List(o1083sub, o1084))) → 1682_0_getTail_Return(EOS(STATIC_1682), java.lang.Object(List(o1083sub, o1084)), o1084)
1682_0_getTail_Return(EOS(STATIC_1682), java.lang.Object(List(o1083sub, o1084)), o1084) → 1686_0_getTail_Return(EOS(STATIC_1686), java.lang.Object(List(o1083sub, o1084)), o1084)
1686_0_getTail_Return(EOS(STATIC_1686), java.lang.Object(List(EOC, o1086)), o1086) → 1696_0_length_InvokeMethod(EOS(STATIC_1696), o1086)
1696_0_length_InvokeMethod(EOS(STATIC_1696), o1086) → 1702_1_length_InvokeMethod(1702_0_length_Load(EOS(STATIC_1702), o1086), o1086)
1702_0_length_Load(EOS(STATIC_1702), o1086) → 1706_0_length_Load(EOS(STATIC_1706), o1086)
1706_0_length_Load(EOS(STATIC_1706), o1086) → 1717_0_length_Load(EOS(STATIC_1717), o1086)
1717_0_length_Load(EOS(STATIC_1717), o1086) → 1624_0_length_Load(EOS(STATIC_1624), o1086)
1624_0_length_Load(EOS(STATIC_1624), o1065) → 1627_0_length_NONNULL(EOS(STATIC_1627), o1065, o1065)
1663_0_getTail_FieldAccess(EOS(STATIC_1663), java.lang.Object(List(EOC, o1086)), java.lang.Object(List(EOC, o1086))) → 1671_0_getTail_FieldAccess(EOS(STATIC_1671), java.lang.Object(List(EOC, o1086)), java.lang.Object(List(EOC, o1086)))
1671_0_getTail_FieldAccess(EOS(STATIC_1671), java.lang.Object(List(EOC, o1086)), java.lang.Object(List(EOC, o1086))) → 1686_0_getTail_Return(EOS(STATIC_1686), java.lang.Object(List(EOC, o1086)), o1086)
1657_0_getTail_FieldAccess(EOS(STATIC_1657), java.lang.Object(List(EOC, o1082)), java.lang.Object(List(EOC, o1082))) → 1665_0_getTail_FieldAccess(EOS(STATIC_1665), java.lang.Object(List(EOC, o1082)), java.lang.Object(List(EOC, o1082)))
1665_0_getTail_FieldAccess(EOS(STATIC_1665), java.lang.Object(List(EOC, o1082)), java.lang.Object(List(EOC, o1082))) → 1674_0_getTail_Return(EOS(STATIC_1674), java.lang.Object(List(EOC, o1082)), o1082)
1674_0_getTail_Return(EOS(STATIC_1674), java.lang.Object(List(EOC, o1082)), o1082) → 1689_0_length_InvokeMethod(EOS(STATIC_1689), o1082)
1689_0_length_InvokeMethod(EOS(STATIC_1689), o1082) → 1697_1_length_InvokeMethod(1697_0_length_Load(EOS(STATIC_1697), o1082), o1082)
1697_0_length_Load(EOS(STATIC_1697), o1082) → 1703_0_length_Load(EOS(STATIC_1703), o1082)
1703_0_length_Load(EOS(STATIC_1703), o1082) → 1711_0_length_Load(EOS(STATIC_1711), o1082)
1711_0_length_Load(EOS(STATIC_1711), o1082) → 1624_0_length_Load(EOS(STATIC_1624), o1082)
1652_0_getTail_FieldAccess(EOS(STATIC_1652), java.lang.Object(List(EOC, o1080)), java.lang.Object(List(EOC, o1080))) → 1659_0_getTail_FieldAccess(EOS(STATIC_1659), java.lang.Object(List(EOC, o1080)), java.lang.Object(List(EOC, o1080)))
1659_0_getTail_FieldAccess(EOS(STATIC_1659), java.lang.Object(List(EOC, o1080)), java.lang.Object(List(EOC, o1080))) → 1666_0_getTail_Return(EOS(STATIC_1666), java.lang.Object(List(EOC, o1080)), o1080)
1666_0_getTail_Return(EOS(STATIC_1666), java.lang.Object(List(EOC, o1080)), o1080) → 1675_0_length_InvokeMethod(EOS(STATIC_1675), o1080)
1675_0_length_InvokeMethod(EOS(STATIC_1675), o1080) → 1690_1_length_InvokeMethod(1690_0_length_Load(EOS(STATIC_1690), o1080), o1080)
1690_0_length_Load(EOS(STATIC_1690), o1080) → 1699_0_length_Load(EOS(STATIC_1699), o1080)
1699_0_length_Load(EOS(STATIC_1699), o1080) → 1708_0_length_Load(EOS(STATIC_1708), o1080)
1708_0_length_Load(EOS(STATIC_1708), o1080) → 1624_0_length_Load(EOS(STATIC_1624), o1080)
R rules:
1627_0_length_NONNULL(EOS(STATIC_1627), NULL, NULL) → 1629_0_length_NONNULL(EOS(STATIC_1629), NULL, NULL)
1629_0_length_NONNULL(EOS(STATIC_1629), NULL, NULL) → 1632_0_length_ConstantStackPush(EOS(STATIC_1632), NULL)
1632_0_length_ConstantStackPush(EOS(STATIC_1632), NULL) → 1635_0_length_Return(EOS(STATIC_1635), NULL)
1690_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL), NULL) → 1720_0_length_Return(EOS(STATIC_1720), NULL, NULL)
1690_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732)), java.lang.Object(List(EOC, NULL))) → 1761_0_length_Return(EOS(STATIC_1761), java.lang.Object(List(EOC, NULL)))
1690_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737)), java.lang.Object(List(EOC, NULL))) → 1773_0_length_Return(EOS(STATIC_1773), java.lang.Object(List(EOC, NULL)))
1690_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741)), java.lang.Object(List(EOC, NULL))) → 1793_0_length_Return(EOS(STATIC_1793), java.lang.Object(List(EOC, NULL)))
1690_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3213))))) → 2461_0_length_Return(EOS(STATIC_2461), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3213)))))
1690_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3232))))) → 2473_0_length_Return(EOS(STATIC_2473), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3232)))))
1690_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3251))))) → 2484_0_length_Return(EOS(STATIC_2484), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3251)))))
1697_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL), NULL) → 1725_0_length_Return(EOS(STATIC_1725), NULL, NULL)
1697_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732)), java.lang.Object(List(EOC, NULL))) → 1762_0_length_Return(EOS(STATIC_1762), java.lang.Object(List(EOC, NULL)))
1697_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737)), java.lang.Object(List(EOC, NULL))) → 1775_0_length_Return(EOS(STATIC_1775), java.lang.Object(List(EOC, NULL)))
1697_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741)), java.lang.Object(List(EOC, NULL))) → 1795_0_length_Return(EOS(STATIC_1795), java.lang.Object(List(EOC, NULL)))
1697_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3217))))) → 2463_0_length_Return(EOS(STATIC_2463), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3217)))))
1697_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3236))))) → 2476_0_length_Return(EOS(STATIC_2476), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3236)))))
1697_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3255))))) → 2487_0_length_Return(EOS(STATIC_2487), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3255)))))
1702_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL), NULL) → 1729_0_length_Return(EOS(STATIC_1729), NULL, NULL)
1702_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732)), java.lang.Object(List(EOC, NULL))) → 1764_0_length_Return(EOS(STATIC_1764), java.lang.Object(List(EOC, NULL)))
1702_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737)), java.lang.Object(List(EOC, NULL))) → 1778_0_length_Return(EOS(STATIC_1778), java.lang.Object(List(EOC, NULL)))
1702_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741)), java.lang.Object(List(EOC, NULL))) → 1798_0_length_Return(EOS(STATIC_1798), java.lang.Object(List(EOC, NULL)))
1702_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3221))))) → 2467_0_length_Return(EOS(STATIC_2467), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3221)))))
1702_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3240))))) → 2478_0_length_Return(EOS(STATIC_2478), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3240)))))
1702_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3259))))) → 2489_0_length_Return(EOS(STATIC_2489), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3259)))))
1720_0_length_Return(EOS(STATIC_1720), NULL, NULL) → 1726_0_length_IntArithmetic(EOS(STATIC_1726))
1725_0_length_Return(EOS(STATIC_1725), NULL, NULL) → 1730_0_length_IntArithmetic(EOS(STATIC_1730))
1726_0_length_IntArithmetic(EOS(STATIC_1726)) → 1732_0_length_Return(EOS(STATIC_1732))
1729_0_length_Return(EOS(STATIC_1729), NULL, NULL) → 1736_0_length_IntArithmetic(EOS(STATIC_1736))
1730_0_length_IntArithmetic(EOS(STATIC_1730)) → 1737_0_length_Return(EOS(STATIC_1737))
1736_0_length_IntArithmetic(EOS(STATIC_1736)) → 1741_0_length_Return(EOS(STATIC_1741))
1761_0_length_Return(EOS(STATIC_1761), java.lang.Object(List(EOC, NULL))) → 1860_0_length_Return(EOS(STATIC_1860), java.lang.Object(List(EOC, NULL)))
1762_0_length_Return(EOS(STATIC_1762), java.lang.Object(List(EOC, NULL))) → 1871_0_length_Return(EOS(STATIC_1871), java.lang.Object(List(EOC, NULL)))
1764_0_length_Return(EOS(STATIC_1764), java.lang.Object(List(EOC, NULL))) → 1882_0_length_Return(EOS(STATIC_1882), java.lang.Object(List(EOC, NULL)))
1773_0_length_Return(EOS(STATIC_1773), java.lang.Object(List(EOC, NULL))) → 1761_0_length_Return(EOS(STATIC_1761), java.lang.Object(List(EOC, NULL)))
1775_0_length_Return(EOS(STATIC_1775), java.lang.Object(List(EOC, NULL))) → 1762_0_length_Return(EOS(STATIC_1762), java.lang.Object(List(EOC, NULL)))
1778_0_length_Return(EOS(STATIC_1778), java.lang.Object(List(EOC, NULL))) → 1764_0_length_Return(EOS(STATIC_1764), java.lang.Object(List(EOC, NULL)))
1793_0_length_Return(EOS(STATIC_1793), java.lang.Object(List(EOC, NULL))) → 1761_0_length_Return(EOS(STATIC_1761), java.lang.Object(List(EOC, NULL)))
1795_0_length_Return(EOS(STATIC_1795), java.lang.Object(List(EOC, NULL))) → 1762_0_length_Return(EOS(STATIC_1762), java.lang.Object(List(EOC, NULL)))
1798_0_length_Return(EOS(STATIC_1798), java.lang.Object(List(EOC, NULL))) → 1764_0_length_Return(EOS(STATIC_1764), java.lang.Object(List(EOC, NULL)))
1860_0_length_Return(EOS(STATIC_1860), java.lang.Object(List(EOC, o1506))) → 1969_0_length_Return(EOS(STATIC_1969), java.lang.Object(List(EOC, o1506)))
1871_0_length_Return(EOS(STATIC_1871), java.lang.Object(List(EOC, o1567))) → 1981_0_length_Return(EOS(STATIC_1981), java.lang.Object(List(EOC, o1567)))
1882_0_length_Return(EOS(STATIC_1882), java.lang.Object(List(EOC, o1622))) → 1997_0_length_Return(EOS(STATIC_1997), java.lang.Object(List(EOC, o1622)))
1969_0_length_Return(EOS(STATIC_1969), java.lang.Object(List(EOC, o1891))) → 2166_0_length_Return(EOS(STATIC_2166), java.lang.Object(List(EOC, o1891)))
1981_0_length_Return(EOS(STATIC_1981), java.lang.Object(List(EOC, o1953))) → 2180_0_length_Return(EOS(STATIC_2180), java.lang.Object(List(EOC, o1953)))
1997_0_length_Return(EOS(STATIC_1997), java.lang.Object(List(EOC, o2008))) → 2189_0_length_Return(EOS(STATIC_2189), java.lang.Object(List(EOC, o2008)))
2166_0_length_Return(EOS(STATIC_2166), java.lang.Object(List(EOC, o2387))) → 2311_0_length_Return(EOS(STATIC_2311), java.lang.Object(List(EOC, o2387)))
2180_0_length_Return(EOS(STATIC_2180), java.lang.Object(List(EOC, o2449))) → 2321_0_length_Return(EOS(STATIC_2321), java.lang.Object(List(EOC, o2449)))
2189_0_length_Return(EOS(STATIC_2189), java.lang.Object(List(EOC, o2504))) → 2333_0_length_Return(EOS(STATIC_2333), java.lang.Object(List(EOC, o2504)))
2311_0_length_Return(EOS(STATIC_2311), java.lang.Object(List(EOC, o2824))) → 2376_0_length_IntArithmetic(EOS(STATIC_2376))
2321_0_length_Return(EOS(STATIC_2321), java.lang.Object(List(EOC, o2886))) → 2380_0_length_IntArithmetic(EOS(STATIC_2380))
2333_0_length_Return(EOS(STATIC_2333), java.lang.Object(List(EOC, o2941))) → 2385_0_length_IntArithmetic(EOS(STATIC_2385))
2376_0_length_IntArithmetic(EOS(STATIC_2376)) → 2393_0_length_Return(EOS(STATIC_2393))
2380_0_length_IntArithmetic(EOS(STATIC_2380)) → 2400_0_length_Return(EOS(STATIC_2400))
2385_0_length_IntArithmetic(EOS(STATIC_2385)) → 2408_0_length_Return(EOS(STATIC_2408))
2461_0_length_Return(EOS(STATIC_2461), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3213))))) → 2311_0_length_Return(EOS(STATIC_2311), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3213)))))
2463_0_length_Return(EOS(STATIC_2463), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3217))))) → 2321_0_length_Return(EOS(STATIC_2321), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3217)))))
2467_0_length_Return(EOS(STATIC_2467), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3221))))) → 2333_0_length_Return(EOS(STATIC_2333), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3221)))))
2473_0_length_Return(EOS(STATIC_2473), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3232))))) → 2311_0_length_Return(EOS(STATIC_2311), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3232)))))
2476_0_length_Return(EOS(STATIC_2476), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3236))))) → 2321_0_length_Return(EOS(STATIC_2321), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3236)))))
2478_0_length_Return(EOS(STATIC_2478), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3240))))) → 2333_0_length_Return(EOS(STATIC_2333), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3240)))))
2484_0_length_Return(EOS(STATIC_2484), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3251))))) → 2311_0_length_Return(EOS(STATIC_2311), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3251)))))
2487_0_length_Return(EOS(STATIC_2487), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3255))))) → 2321_0_length_Return(EOS(STATIC_2321), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3255)))))
2489_0_length_Return(EOS(STATIC_2489), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3259))))) → 2333_0_length_Return(EOS(STATIC_2333), java.lang.Object(List(EOC, java.lang.Object(List(EOC, o3259)))))
Combined rules. Obtained 3 conditional rules for P and 22 conditional rules for R.
P rules:
1627_0_length_NONNULL(EOS(STATIC_1627), java.lang.Object(List(EOC, x0)), java.lang.Object(List(EOC, x0))) → 1702_1_length_InvokeMethod(1627_0_length_NONNULL(EOS(STATIC_1627), x0, x0), x0)
1627_0_length_NONNULL(EOS(STATIC_1627), java.lang.Object(List(EOC, x0)), java.lang.Object(List(EOC, x0))) → 1697_1_length_InvokeMethod(1627_0_length_NONNULL(EOS(STATIC_1627), x0, x0), x0)
1627_0_length_NONNULL(EOS(STATIC_1627), java.lang.Object(List(EOC, x0)), java.lang.Object(List(EOC, x0))) → 1690_1_length_InvokeMethod(1627_0_length_NONNULL(EOS(STATIC_1627), x0, x0), x0)
R rules:
1627_0_length_NONNULL(EOS(STATIC_1627), NULL, NULL) → 1635_0_length_Return(EOS(STATIC_1635), NULL)
1690_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL), NULL) → 1732_0_length_Return(EOS(STATIC_1732))
1697_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL), NULL) → 1737_0_length_Return(EOS(STATIC_1737))
1702_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL), NULL) → 1741_0_length_Return(EOS(STATIC_1741))
1690_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0))))) → 2393_0_length_Return(EOS(STATIC_2393))
1690_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0))))) → 2393_0_length_Return(EOS(STATIC_2393))
1690_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0))))) → 2393_0_length_Return(EOS(STATIC_2393))
1690_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732)), java.lang.Object(List(EOC, NULL))) → 2393_0_length_Return(EOS(STATIC_2393))
1690_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737)), java.lang.Object(List(EOC, NULL))) → 2393_0_length_Return(EOS(STATIC_2393))
1690_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741)), java.lang.Object(List(EOC, NULL))) → 2393_0_length_Return(EOS(STATIC_2393))
1697_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0))))) → 2400_0_length_Return(EOS(STATIC_2400))
1697_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0))))) → 2400_0_length_Return(EOS(STATIC_2400))
1697_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0))))) → 2400_0_length_Return(EOS(STATIC_2400))
1697_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732)), java.lang.Object(List(EOC, NULL))) → 2400_0_length_Return(EOS(STATIC_2400))
1697_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737)), java.lang.Object(List(EOC, NULL))) → 2400_0_length_Return(EOS(STATIC_2400))
1697_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741)), java.lang.Object(List(EOC, NULL))) → 2400_0_length_Return(EOS(STATIC_2400))
1702_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0))))) → 2408_0_length_Return(EOS(STATIC_2408))
1702_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0))))) → 2408_0_length_Return(EOS(STATIC_2408))
1702_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408)), java.lang.Object(List(EOC, java.lang.Object(List(EOC, x0))))) → 2408_0_length_Return(EOS(STATIC_2408))
1702_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732)), java.lang.Object(List(EOC, NULL))) → 2408_0_length_Return(EOS(STATIC_2408))
1702_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737)), java.lang.Object(List(EOC, NULL))) → 2408_0_length_Return(EOS(STATIC_2408))
1702_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741)), java.lang.Object(List(EOC, NULL))) → 2408_0_length_Return(EOS(STATIC_2408))
Filtered ground terms:
1627_0_length_NONNULL(x1, x2, x3) → 1627_0_length_NONNULL(x2, x3)
List(x1, x2) → List(x2)
2408_0_length_Return(x1) → 2408_0_length_Return
1741_0_length_Return(x1) → 1741_0_length_Return
1737_0_length_Return(x1) → 1737_0_length_Return
1732_0_length_Return(x1) → 1732_0_length_Return
2400_0_length_Return(x1) → 2400_0_length_Return
2393_0_length_Return(x1) → 2393_0_length_Return
1635_0_length_Return(x1, x2) → 1635_0_length_Return
Filtered duplicate args:
1627_0_length_NONNULL(x1, x2) → 1627_0_length_NONNULL(x2)
Combined rules. Obtained 3 conditional rules for P and 22 conditional rules for R.
P rules:
1627_0_length_NONNULL(java.lang.Object(List(x0))) → 1702_1_length_InvokeMethod(1627_0_length_NONNULL(x0), x0)
1627_0_length_NONNULL(java.lang.Object(List(x0))) → 1697_1_length_InvokeMethod(1627_0_length_NONNULL(x0), x0)
1627_0_length_NONNULL(java.lang.Object(List(x0))) → 1690_1_length_InvokeMethod(1627_0_length_NONNULL(x0), x0)
R rules:
1627_0_length_NONNULL(NULL) → 1635_0_length_Return
1690_1_length_InvokeMethod(1635_0_length_Return, NULL) → 1732_0_length_Return
1697_1_length_InvokeMethod(1635_0_length_Return, NULL) → 1737_0_length_Return
1702_1_length_InvokeMethod(1635_0_length_Return, NULL) → 1741_0_length_Return
1690_1_length_InvokeMethod(2393_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0))))) → 2393_0_length_Return
1690_1_length_InvokeMethod(2400_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0))))) → 2393_0_length_Return
1690_1_length_InvokeMethod(2408_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0))))) → 2393_0_length_Return
1690_1_length_InvokeMethod(1732_0_length_Return, java.lang.Object(List(NULL))) → 2393_0_length_Return
1690_1_length_InvokeMethod(1737_0_length_Return, java.lang.Object(List(NULL))) → 2393_0_length_Return
1690_1_length_InvokeMethod(1741_0_length_Return, java.lang.Object(List(NULL))) → 2393_0_length_Return
1697_1_length_InvokeMethod(2393_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0))))) → 2400_0_length_Return
1697_1_length_InvokeMethod(2400_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0))))) → 2400_0_length_Return
1697_1_length_InvokeMethod(2408_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0))))) → 2400_0_length_Return
1697_1_length_InvokeMethod(1732_0_length_Return, java.lang.Object(List(NULL))) → 2400_0_length_Return
1697_1_length_InvokeMethod(1737_0_length_Return, java.lang.Object(List(NULL))) → 2400_0_length_Return
1697_1_length_InvokeMethod(1741_0_length_Return, java.lang.Object(List(NULL))) → 2400_0_length_Return
1702_1_length_InvokeMethod(2393_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0))))) → 2408_0_length_Return
1702_1_length_InvokeMethod(2400_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0))))) → 2408_0_length_Return
1702_1_length_InvokeMethod(2408_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0))))) → 2408_0_length_Return
1702_1_length_InvokeMethod(1732_0_length_Return, java.lang.Object(List(NULL))) → 2408_0_length_Return
1702_1_length_InvokeMethod(1737_0_length_Return, java.lang.Object(List(NULL))) → 2408_0_length_Return
1702_1_length_InvokeMethod(1741_0_length_Return, java.lang.Object(List(NULL))) → 2408_0_length_Return
Performed bisimulation on rules. Used the following equivalence classes: {[1635_0_length_Return, 1732_0_length_Return, 1737_0_length_Return, 1741_0_length_Return, 2393_0_length_Return, 2400_0_length_Return, 2408_0_length_Return]=1635_0_length_Return, [1690_1_length_InvokeMethod_2, 1697_1_length_InvokeMethod_2, 1702_1_length_InvokeMethod_2]=1690_1_length_InvokeMethod_2}
Finished conversion. Obtained 1 rules for P and 4 rules for R. System has no predefined symbols.
P rules:
1627_0_LENGTH_NONNULL(java.lang.Object(List(x0))) → 1627_0_LENGTH_NONNULL(x0)
R rules:
1627_0_length_NONNULL(NULL) → 1635_0_length_Return
1690_1_length_InvokeMethod(1635_0_length_Return, NULL) → 1635_0_length_Return
1690_1_length_InvokeMethod(1635_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0))))) → 1635_0_length_Return
1690_1_length_InvokeMethod(1635_0_length_Return, java.lang.Object(List(NULL))) → 1635_0_length_Return
!= | ~ | 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 |
(0) -> (0), if (x0[0] →* java.lang.Object(List(x0[0]')))
1627_0_LENGTH_NONNULL(java.lang.Object(List(x0[0]))) → 1627_0_LENGTH_NONNULL(x0[0])
1627_0_length_NONNULL(NULL) → 1635_0_length_Return
1690_1_length_InvokeMethod(1635_0_length_Return, NULL) → 1635_0_length_Return
1690_1_length_InvokeMethod(1635_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0))))) → 1635_0_length_Return
1690_1_length_InvokeMethod(1635_0_length_Return, java.lang.Object(List(NULL))) → 1635_0_length_Return
1627_0_length_NONNULL(NULL)
1690_1_length_InvokeMethod(1635_0_length_Return, NULL)
1690_1_length_InvokeMethod(1635_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0)))))
1690_1_length_InvokeMethod(1635_0_length_Return, java.lang.Object(List(NULL)))
1627_0_LENGTH_NONNULL(java.lang.Object(List(x0[0]))) → 1627_0_LENGTH_NONNULL(x0[0])
1627_0_length_NONNULL(NULL)
1690_1_length_InvokeMethod(1635_0_length_Return, NULL)
1690_1_length_InvokeMethod(1635_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0)))))
1690_1_length_InvokeMethod(1635_0_length_Return, java.lang.Object(List(NULL)))
1627_0_length_NONNULL(NULL)
1690_1_length_InvokeMethod(1635_0_length_Return, NULL)
1690_1_length_InvokeMethod(1635_0_length_Return, java.lang.Object(List(java.lang.Object(List(x0)))))
1690_1_length_InvokeMethod(1635_0_length_Return, java.lang.Object(List(NULL)))
1627_0_LENGTH_NONNULL(java.lang.Object(List(x0[0]))) → 1627_0_LENGTH_NONNULL(x0[0])
From the DPs we obtained the following set of size-change graphs:
Generated 76 rules for P and 212 rules for R.
P rules:
1765_0_test_LT(EOS(STATIC_1765), java.lang.Object(ARRAY(matching1)), i675, i675) → 1790_0_test_LT(EOS(STATIC_1790), java.lang.Object(ARRAY(3)), i675, i675) | =(matching1, 3)
1790_0_test_LT(EOS(STATIC_1790), java.lang.Object(ARRAY(matching1)), i675, i675) → 1817_0_test_Load(EOS(STATIC_1817), java.lang.Object(ARRAY(3)), i675) | &&(>=(i675, 0), =(matching1, 3))
1817_0_test_Load(EOS(STATIC_1817), java.lang.Object(ARRAY(matching1)), i675) → 1824_0_test_Load(EOS(STATIC_1824), java.lang.Object(ARRAY(3)), i675, java.lang.Object(ARRAY(3))) | =(matching1, 3)
1824_0_test_Load(EOS(STATIC_1824), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(ARRAY(matching2))) → 1848_0_test_ArrayAccess(EOS(STATIC_1848), java.lang.Object(ARRAY(3)), i675, java.lang.Object(ARRAY(3)), i675) | &&(=(matching1, 3), =(matching2, 3))
1848_0_test_ArrayAccess(EOS(STATIC_1848), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(ARRAY(matching2)), i675) → 1903_0_test_InvokeMethod(EOS(STATIC_1903), java.lang.Object(ARRAY(3)), i675, o1709) | &&(&&(<(i675, 3), =(matching1, 3)), =(matching2, 3))
1903_0_test_InvokeMethod(EOS(STATIC_1903), java.lang.Object(ARRAY(matching1)), i675, o1709) → 1915_1_test_InvokeMethod(1915_0_length_Load(EOS(STATIC_1915), o1709), java.lang.Object(ARRAY(3)), i675, o1709) | =(matching1, 3)
1915_1_test_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL, matching1), java.lang.Object(ARRAY(matching2)), i675, NULL) → 2111_0_length_Return(EOS(STATIC_2111), java.lang.Object(ARRAY(3)), i675, NULL, NULL, 0) | &&(=(matching1, 0), =(matching2, 3))
1915_1_test_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732), matching1), java.lang.Object(ARRAY(matching2)), i675, java.lang.Object(List(EOC))) → 2112_0_length_Return(EOS(STATIC_2112), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 3))
1915_1_test_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737), matching1), java.lang.Object(ARRAY(matching2)), i675, java.lang.Object(List(EOC))) → 2120_0_length_Return(EOS(STATIC_2120), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 3))
1915_1_test_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741), matching1), java.lang.Object(ARRAY(matching2)), i675, java.lang.Object(List(EOC))) → 2132_0_length_Return(EOS(STATIC_2132), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 3))
1915_1_test_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393), i1240), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC))) → 2470_0_length_Return(EOS(STATIC_2470), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), i1240) | =(matching1, 3)
1915_1_test_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400), i1247), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC))) → 2482_0_length_Return(EOS(STATIC_2482), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), i1247) | =(matching1, 3)
1915_1_test_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408), i1257), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC))) → 2492_0_length_Return(EOS(STATIC_2492), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), i1257) | =(matching1, 3)
2111_0_length_Return(EOS(STATIC_2111), java.lang.Object(ARRAY(matching1)), i675, NULL, NULL, matching2) → 2208_0_test_Store(EOS(STATIC_2208), java.lang.Object(ARRAY(3)), i675, 0) | &&(=(matching1, 3), =(matching2, 0))
2208_0_test_Store(EOS(STATIC_2208), java.lang.Object(ARRAY(matching1)), i675, matching2) → 2221_0_test_ConstantStackPush(EOS(STATIC_2221), java.lang.Object(ARRAY(3)), i675, 0) | &&(=(matching1, 3), =(matching2, 0))
2221_0_test_ConstantStackPush(EOS(STATIC_2221), java.lang.Object(ARRAY(matching1)), i675, matching2) → 2244_0_test_Store(EOS(STATIC_2244), java.lang.Object(ARRAY(3)), i675, 0, 0) | &&(=(matching1, 3), =(matching2, 0))
2244_0_test_Store(EOS(STATIC_2244), java.lang.Object(ARRAY(matching1)), i675, matching2, matching3) → 2251_0_test_Load(EOS(STATIC_2251), java.lang.Object(ARRAY(3)), i675, 0, 0) | &&(&&(=(matching1, 3), =(matching2, 0)), =(matching3, 0))
2251_0_test_Load(EOS(STATIC_2251), java.lang.Object(ARRAY(matching1)), i675, matching2, matching3) → 2296_0_test_Load(EOS(STATIC_2296), java.lang.Object(ARRAY(3)), i675, 0, 0, 0) | &&(&&(=(matching1, 3), =(matching2, 0)), =(matching3, 0))
2296_0_test_Load(EOS(STATIC_2296), java.lang.Object(ARRAY(matching1)), i675, matching2, matching3, matching4) → 2375_0_test_GE(EOS(STATIC_2375), java.lang.Object(ARRAY(3)), i675, 0, 0, 0, 0) | &&(&&(&&(=(matching1, 3), =(matching2, 0)), =(matching3, 0)), =(matching4, 0))
2375_0_test_GE(EOS(STATIC_2375), java.lang.Object(ARRAY(matching1)), i675, matching2, matching3, matching4, matching5) → 2388_0_test_Load(EOS(STATIC_2388), java.lang.Object(ARRAY(3)), i675) | &&(&&(&&(&&(=(matching1, 3), =(matching2, 0)), =(matching3, 0)), =(matching4, 0)), =(matching5, 0))
2388_0_test_Load(EOS(STATIC_2388), java.lang.Object(ARRAY(matching1)), i675) → 2645_0_test_Load(EOS(STATIC_2645), java.lang.Object(ARRAY(3)), i675) | =(matching1, 3)
2645_0_test_Load(EOS(STATIC_2645), java.lang.Object(ARRAY(matching1)), i675) → 3051_0_test_Load(EOS(STATIC_3051), java.lang.Object(ARRAY(3)), i675) | =(matching1, 3)
3051_0_test_Load(EOS(STATIC_3051), java.lang.Object(ARRAY(matching1)), i675) → 3322_0_test_Load(EOS(STATIC_3322), java.lang.Object(ARRAY(3)), i675) | =(matching1, 3)
3322_0_test_Load(EOS(STATIC_3322), java.lang.Object(ARRAY(matching1)), i675) → 3689_0_test_Load(EOS(STATIC_3689), java.lang.Object(ARRAY(3)), i675) | =(matching1, 3)
3689_0_test_Load(EOS(STATIC_3689), java.lang.Object(ARRAY(matching1)), i675) → 4336_0_test_Load(EOS(STATIC_4336), java.lang.Object(ARRAY(3)), i675) | =(matching1, 3)
4336_0_test_Load(EOS(STATIC_4336), java.lang.Object(ARRAY(matching1)), i675) → 4342_0_test_Load(EOS(STATIC_4342), i675, java.lang.Object(ARRAY(3))) | =(matching1, 3)
4342_0_test_Load(EOS(STATIC_4342), i675, java.lang.Object(ARRAY(matching1))) → 4346_0_test_ConstantStackPush(EOS(STATIC_4346), java.lang.Object(ARRAY(3)), i675) | =(matching1, 3)
4346_0_test_ConstantStackPush(EOS(STATIC_4346), java.lang.Object(ARRAY(matching1)), i675) → 4351_0_test_IntArithmetic(EOS(STATIC_4351), java.lang.Object(ARRAY(3)), i675, 1) | =(matching1, 3)
4351_0_test_IntArithmetic(EOS(STATIC_4351), java.lang.Object(ARRAY(matching1)), i675, matching2) → 4355_0_test_InvokeMethod(EOS(STATIC_4355), java.lang.Object(ARRAY(3)), -(i675, 1)) | &&(&&(>=(i675, 0), =(matching1, 3)), =(matching2, 1))
4355_0_test_InvokeMethod(EOS(STATIC_4355), java.lang.Object(ARRAY(matching1)), i2066) → 4359_1_test_InvokeMethod(4359_0_test_Load(EOS(STATIC_4359), java.lang.Object(ARRAY(3)), i2066), java.lang.Object(ARRAY(3)), i2066) | =(matching1, 3)
4359_0_test_Load(EOS(STATIC_4359), java.lang.Object(ARRAY(matching1)), i2066) → 4363_0_test_Load(EOS(STATIC_4363), java.lang.Object(ARRAY(3)), i2066) | =(matching1, 3)
4363_0_test_Load(EOS(STATIC_4363), java.lang.Object(ARRAY(matching1)), i2066) → 1753_0_test_Load(EOS(STATIC_1753), java.lang.Object(ARRAY(3)), i2066) | =(matching1, 3)
1753_0_test_Load(EOS(STATIC_1753), java.lang.Object(ARRAY(matching1)), i641) → 1765_0_test_LT(EOS(STATIC_1765), java.lang.Object(ARRAY(3)), i641, i641) | =(matching1, 3)
2112_0_length_Return(EOS(STATIC_2112), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC)), matching2) → 2121_0_length_Return(EOS(STATIC_2121), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 3), =(matching2, 1))
2121_0_length_Return(EOS(STATIC_2121), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC)), matching2) → 2133_0_length_Return(EOS(STATIC_2133), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 3), =(matching2, 1))
2133_0_length_Return(EOS(STATIC_2133), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC)), matching2) → 2143_0_length_Return(EOS(STATIC_2143), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 3), =(matching2, 1))
2143_0_length_Return(EOS(STATIC_2143), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC)), i1014) → 2342_0_length_Return(EOS(STATIC_2342), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), i1014) | =(matching1, 3)
2342_0_length_Return(EOS(STATIC_2342), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC)), i1205) → 2387_0_test_Store(EOS(STATIC_2387), java.lang.Object(ARRAY(3)), i675, i1205) | =(matching1, 3)
2387_0_test_Store(EOS(STATIC_2387), java.lang.Object(ARRAY(matching1)), i675, i1205) → 2410_0_test_ConstantStackPush(EOS(STATIC_2410), java.lang.Object(ARRAY(3)), i675, i1205) | =(matching1, 3)
2410_0_test_ConstantStackPush(EOS(STATIC_2410), java.lang.Object(ARRAY(matching1)), i675, i1205) → 2417_0_test_Store(EOS(STATIC_2417), java.lang.Object(ARRAY(3)), i675, i1205, 0) | =(matching1, 3)
2417_0_test_Store(EOS(STATIC_2417), java.lang.Object(ARRAY(matching1)), i675, i1205, matching2) → 2456_0_test_Load(EOS(STATIC_2456), java.lang.Object(ARRAY(3)), i675, i1205, 0) | &&(=(matching1, 3), =(matching2, 0))
2456_0_test_Load(EOS(STATIC_2456), java.lang.Object(ARRAY(matching1)), i675, i1205, matching2) → 2582_0_test_Load(EOS(STATIC_2582), java.lang.Object(ARRAY(3)), i675, i1205, 0) | &&(=(matching1, 3), =(matching2, 0))
2582_0_test_Load(EOS(STATIC_2582), java.lang.Object(ARRAY(matching1)), i675, i1205, i1342) → 2933_0_test_Load(EOS(STATIC_2933), java.lang.Object(ARRAY(3)), i675, i1205, i1342) | =(matching1, 3)
2933_0_test_Load(EOS(STATIC_2933), java.lang.Object(ARRAY(matching1)), i675, i1205, i1469) → 3260_0_test_Load(EOS(STATIC_3260), java.lang.Object(ARRAY(3)), i675, i1205, i1469) | =(matching1, 3)
3260_0_test_Load(EOS(STATIC_3260), java.lang.Object(ARRAY(matching1)), i675, i1205, i1617) → 3580_0_test_Load(EOS(STATIC_3580), java.lang.Object(ARRAY(3)), i675, i1205, i1617) | =(matching1, 3)
3580_0_test_Load(EOS(STATIC_3580), java.lang.Object(ARRAY(matching1)), i675, i1205, i1731) → 4304_0_test_Load(EOS(STATIC_4304), java.lang.Object(ARRAY(3)), i675, i1205, i1731) | =(matching1, 3)
4304_0_test_Load(EOS(STATIC_4304), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057) → 4312_0_test_Load(EOS(STATIC_4312), java.lang.Object(ARRAY(3)), i675, i1205, i2057, i2057) | =(matching1, 3)
4312_0_test_Load(EOS(STATIC_4312), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, i2057) → 4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), i675, i1205, i2057, i2057, i1205) | =(matching1, 3)
4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, i2057, i1205) → 4327_0_test_GE(EOS(STATIC_4327), java.lang.Object(ARRAY(3)), i675, i1205, i2057, i2057, i1205) | =(matching1, 3)
4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, i2057, i1205) → 4329_0_test_GE(EOS(STATIC_4329), java.lang.Object(ARRAY(3)), i675, i1205, i2057, i2057, i1205) | =(matching1, 3)
4327_0_test_GE(EOS(STATIC_4327), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, i2057, i1205) → 4336_0_test_Load(EOS(STATIC_4336), java.lang.Object(ARRAY(3)), i675) | &&(>=(i2057, i1205), =(matching1, 3))
4329_0_test_GE(EOS(STATIC_4329), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, i2057, i1205) → 4338_0_test_Load(EOS(STATIC_4338), java.lang.Object(ARRAY(3)), i675, i1205, i2057) | &&(<(i2057, i1205), =(matching1, 3))
4338_0_test_Load(EOS(STATIC_4338), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057) → 4343_0_test_Load(EOS(STATIC_4343), java.lang.Object(ARRAY(3)), i675, i1205, i2057, java.lang.Object(ARRAY(3))) | =(matching1, 3)
4343_0_test_Load(EOS(STATIC_4343), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, java.lang.Object(ARRAY(matching2))) → 4348_0_test_ArrayAccess(EOS(STATIC_4348), java.lang.Object(ARRAY(3)), i675, i1205, i2057, java.lang.Object(ARRAY(3)), i675) | &&(=(matching1, 3), =(matching2, 3))
4348_0_test_ArrayAccess(EOS(STATIC_4348), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, java.lang.Object(ARRAY(matching2)), i675) → 4352_0_test_InvokeMethod(EOS(STATIC_4352), java.lang.Object(ARRAY(3)), i675, i1205, i2057, o6523) | &&(&&(<(i675, 3), =(matching1, 3)), =(matching2, 3))
4352_0_test_InvokeMethod(EOS(STATIC_4352), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, o6523) → 4356_1_test_InvokeMethod(4356_0_bubble_Load(EOS(STATIC_4356), o6523), java.lang.Object(ARRAY(3)), i675, i1205, i2057, o6523) | =(matching1, 3)
4356_1_test_InvokeMethod(4271_0_bubble_Return(EOS(STATIC_4271), NULL), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, NULL) → 4397_0_bubble_Return(EOS(STATIC_4397), java.lang.Object(ARRAY(3)), i675, i1205, i2057, NULL, NULL) | =(matching1, 3)
4356_1_test_InvokeMethod(4345_0_bubble_Return(EOS(STATIC_4345), java.lang.Object(List(o6559sub))), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, java.lang.Object(List(o6559sub))) → 4403_0_bubble_Return(EOS(STATIC_4403), java.lang.Object(ARRAY(3)), i675, i1205, i2057, java.lang.Object(List(o6559sub)), java.lang.Object(List(o6559sub))) | =(matching1, 3)
4356_1_test_InvokeMethod(4556_0_bubble_Return(EOS(STATIC_4556)), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, o6523) → 4563_0_bubble_Return(EOS(STATIC_4563), java.lang.Object(ARRAY(3)), i675, i1205, i2057, java.lang.Object(List(o6469sub))) | =(matching1, 3)
4356_1_test_InvokeMethod(4577_0_bubble_Return(EOS(STATIC_4577)), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, o6523) → 4583_0_bubble_Return(EOS(STATIC_4583), java.lang.Object(ARRAY(3)), i675, i1205, i2057, java.lang.Object(List(o6912sub))) | =(matching1, 3)
4397_0_bubble_Return(EOS(STATIC_4397), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, NULL, NULL) → 4404_0_bubble_Return(EOS(STATIC_4404), java.lang.Object(ARRAY(3)), i675, i1205, i2057, NULL, NULL) | =(matching1, 3)
4404_0_bubble_Return(EOS(STATIC_4404), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, o6569, o6569) → 4419_0_test_Inc(EOS(STATIC_4419), java.lang.Object(ARRAY(3)), i675, i1205, i2057) | =(matching1, 3)
4419_0_test_Inc(EOS(STATIC_4419), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057) → 4500_0_test_Inc(EOS(STATIC_4500), java.lang.Object(ARRAY(3)), i675, i1205, i2057) | =(matching1, 3)
4500_0_test_Inc(EOS(STATIC_4500), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057) → 4527_0_test_Inc(EOS(STATIC_4527), java.lang.Object(ARRAY(3)), i675, i1205, i2057) | =(matching1, 3)
4527_0_test_Inc(EOS(STATIC_4527), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057) → 4535_0_test_JMP(EOS(STATIC_4535), java.lang.Object(ARRAY(3)), i675, i1205, +(i2057, 1)) | =(matching1, 3)
4535_0_test_JMP(EOS(STATIC_4535), java.lang.Object(ARRAY(matching1)), i675, i1205, i2131) → 4540_0_test_Load(EOS(STATIC_4540), java.lang.Object(ARRAY(3)), i675, i1205, i2131) | =(matching1, 3)
4540_0_test_Load(EOS(STATIC_4540), java.lang.Object(ARRAY(matching1)), i675, i1205, i2131) → 4304_0_test_Load(EOS(STATIC_4304), java.lang.Object(ARRAY(3)), i675, i1205, i2131) | =(matching1, 3)
4403_0_bubble_Return(EOS(STATIC_4403), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, java.lang.Object(List(o6559sub)), java.lang.Object(List(o6559sub))) → 4404_0_bubble_Return(EOS(STATIC_4404), java.lang.Object(ARRAY(3)), i675, i1205, i2057, java.lang.Object(List(o6559sub)), java.lang.Object(List(o6559sub))) | =(matching1, 3)
4563_0_bubble_Return(EOS(STATIC_4563), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, java.lang.Object(List(o6469sub))) → 4519_0_bubble_Return(EOS(STATIC_4519), java.lang.Object(ARRAY(3)), i675, i1205, i2057, java.lang.Object(List(o6469sub))) | =(matching1, 3)
4519_0_bubble_Return(EOS(STATIC_4519), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, java.lang.Object(List(o6772sub))) → 4527_0_test_Inc(EOS(STATIC_4527), java.lang.Object(ARRAY(3)), i675, i1205, i2057) | =(matching1, 3)
4583_0_bubble_Return(EOS(STATIC_4583), java.lang.Object(ARRAY(matching1)), i675, i1205, i2057, java.lang.Object(List(o6912sub))) → 4519_0_bubble_Return(EOS(STATIC_4519), java.lang.Object(ARRAY(3)), i675, i1205, i2057, java.lang.Object(List(o6912sub))) | =(matching1, 3)
2120_0_length_Return(EOS(STATIC_2120), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC)), matching2) → 2121_0_length_Return(EOS(STATIC_2121), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 3), =(matching2, 1))
2132_0_length_Return(EOS(STATIC_2132), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC)), matching2) → 2133_0_length_Return(EOS(STATIC_2133), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 3), =(matching2, 1))
2470_0_length_Return(EOS(STATIC_2470), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC)), i1240) → 2342_0_length_Return(EOS(STATIC_2342), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), i1240) | =(matching1, 3)
2482_0_length_Return(EOS(STATIC_2482), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC)), i1247) → 2342_0_length_Return(EOS(STATIC_2342), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), i1247) | =(matching1, 3)
2492_0_length_Return(EOS(STATIC_2492), java.lang.Object(ARRAY(matching1)), i675, java.lang.Object(List(EOC)), i1257) → 2342_0_length_Return(EOS(STATIC_2342), java.lang.Object(ARRAY(3)), i675, java.lang.Object(List(EOC)), i1257) | =(matching1, 3)
R rules:
1915_0_length_Load(EOS(STATIC_1915), o1709) → 1928_0_length_Load(EOS(STATIC_1928), o1709)
1928_0_length_Load(EOS(STATIC_1928), o1709) → 1954_0_length_Load(EOS(STATIC_1954), o1709)
1954_0_length_Load(EOS(STATIC_1954), o1709) → 2024_0_length_Load(EOS(STATIC_2024), o1709)
2024_0_length_Load(EOS(STATIC_2024), o1709) → 2041_0_length_Load(EOS(STATIC_2041), o1709)
2041_0_length_Load(EOS(STATIC_2041), o1709) → 2063_0_length_Load(EOS(STATIC_2063), o1709)
2063_0_length_Load(EOS(STATIC_2063), o1709) → 1624_0_length_Load(EOS(STATIC_1624), o1709)
4356_0_bubble_Load(EOS(STATIC_4356), o6523) → 4360_0_bubble_Load(EOS(STATIC_4360), o6523)
4360_0_bubble_Load(EOS(STATIC_4360), o6523) → 4365_0_bubble_Load(EOS(STATIC_4365), o6523)
4365_0_bubble_Load(EOS(STATIC_4365), o6523) → 4371_0_bubble_Load(EOS(STATIC_4371), o6523)
4371_0_bubble_Load(EOS(STATIC_4371), o6523) → 4376_0_bubble_Load(EOS(STATIC_4376), o6523)
4376_0_bubble_Load(EOS(STATIC_4376), o6523) → 4381_0_bubble_Load(EOS(STATIC_4381), o6523)
4381_0_bubble_Load(EOS(STATIC_4381), o6523) → 4265_0_bubble_Load(EOS(STATIC_4265), o6523)
1708_0_length_Load(EOS(STATIC_1708), o1080) → 1624_0_length_Load(EOS(STATIC_1624), o1080)
1711_0_length_Load(EOS(STATIC_1711), o1082) → 1624_0_length_Load(EOS(STATIC_1624), o1082)
1717_0_length_Load(EOS(STATIC_1717), o1086) → 1624_0_length_Load(EOS(STATIC_1624), o1086)
4549_0_bubble_Load(EOS(STATIC_4549), java.lang.Object(List(EOC))) → 4265_0_bubble_Load(EOS(STATIC_4265), java.lang.Object(List(EOC)))
1624_0_length_Load(EOS(STATIC_1624), o1065) → 1627_0_length_NONNULL(EOS(STATIC_1627), o1065, o1065)
1627_0_length_NONNULL(EOS(STATIC_1627), java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1628_0_length_NONNULL(EOS(STATIC_1628), java.lang.Object(o1071sub), java.lang.Object(o1071sub))
1627_0_length_NONNULL(EOS(STATIC_1627), NULL, NULL) → 1629_0_length_NONNULL(EOS(STATIC_1629), NULL, NULL)
1628_0_length_NONNULL(EOS(STATIC_1628), java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1631_0_length_ConstantStackPush(EOS(STATIC_1631), java.lang.Object(o1071sub))
1629_0_length_NONNULL(EOS(STATIC_1629), NULL, NULL) → 1632_0_length_ConstantStackPush(EOS(STATIC_1632), NULL)
1631_0_length_ConstantStackPush(EOS(STATIC_1631), java.lang.Object(o1071sub)) → 1633_0_length_Load(EOS(STATIC_1633), java.lang.Object(o1071sub), 1)
1632_0_length_ConstantStackPush(EOS(STATIC_1632), NULL) → 1635_0_length_Return(EOS(STATIC_1635), NULL, 0)
1633_0_length_Load(EOS(STATIC_1633), java.lang.Object(o1071sub), matching1) → 1637_0_length_InvokeMethod(EOS(STATIC_1637), 1, java.lang.Object(o1071sub)) | =(matching1, 1)
1637_0_length_InvokeMethod(EOS(STATIC_1637), matching1, java.lang.Object(o1071sub)) → 1640_0_getTail_Load(EOS(STATIC_1640), 1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) | =(matching1, 1)
1640_0_getTail_Load(EOS(STATIC_1640), matching1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1647_0_getTail_FieldAccess(EOS(STATIC_1647), 1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) | =(matching1, 1)
1647_0_getTail_FieldAccess(EOS(STATIC_1647), matching1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1651_0_getTail_FieldAccess(EOS(STATIC_1651), 1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) | =(matching1, 1)
1647_0_getTail_FieldAccess(EOS(STATIC_1647), matching1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1652_0_getTail_FieldAccess(EOS(STATIC_1652), 1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) | =(matching1, 1)
1651_0_getTail_FieldAccess(EOS(STATIC_1651), matching1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1656_0_getTail_FieldAccess(EOS(STATIC_1656), 1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) | =(matching1, 1)
1651_0_getTail_FieldAccess(EOS(STATIC_1651), matching1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1657_0_getTail_FieldAccess(EOS(STATIC_1657), 1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) | =(matching1, 1)
1652_0_getTail_FieldAccess(EOS(STATIC_1652), matching1, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 1659_0_getTail_FieldAccess(EOS(STATIC_1659), 1, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) | =(matching1, 1)
1656_0_getTail_FieldAccess(EOS(STATIC_1656), matching1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1662_0_getTail_FieldAccess(EOS(STATIC_1662), 1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) | =(matching1, 1)
1656_0_getTail_FieldAccess(EOS(STATIC_1656), matching1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) → 1663_0_getTail_FieldAccess(EOS(STATIC_1663), 1, java.lang.Object(o1071sub), java.lang.Object(o1071sub)) | =(matching1, 1)
1657_0_getTail_FieldAccess(EOS(STATIC_1657), matching1, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 1665_0_getTail_FieldAccess(EOS(STATIC_1665), 1, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) | =(matching1, 1)
1659_0_getTail_FieldAccess(EOS(STATIC_1659), matching1, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 1666_0_getTail_Return(EOS(STATIC_1666), 1, java.lang.Object(List(EOC)), o1080) | =(matching1, 1)
1662_0_getTail_FieldAccess(EOS(STATIC_1662), matching1, java.lang.Object(List(o1083sub)), java.lang.Object(List(o1083sub))) → 1669_0_getTail_FieldAccess(EOS(STATIC_1669), 1, java.lang.Object(List(o1083sub)), java.lang.Object(List(o1083sub))) | =(matching1, 1)
1663_0_getTail_FieldAccess(EOS(STATIC_1663), matching1, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 1671_0_getTail_FieldAccess(EOS(STATIC_1671), 1, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) | =(matching1, 1)
1665_0_getTail_FieldAccess(EOS(STATIC_1665), matching1, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 1674_0_getTail_Return(EOS(STATIC_1674), 1, java.lang.Object(List(EOC)), o1082) | =(matching1, 1)
1666_0_getTail_Return(EOS(STATIC_1666), matching1, java.lang.Object(List(EOC)), o1080) → 1675_0_length_InvokeMethod(EOS(STATIC_1675), 1, o1080) | =(matching1, 1)
1669_0_getTail_FieldAccess(EOS(STATIC_1669), matching1, java.lang.Object(List(o1083sub)), java.lang.Object(List(o1083sub))) → 1682_0_getTail_Return(EOS(STATIC_1682), 1, java.lang.Object(List(o1083sub)), o1084) | =(matching1, 1)
1671_0_getTail_FieldAccess(EOS(STATIC_1671), matching1, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 1686_0_getTail_Return(EOS(STATIC_1686), 1, java.lang.Object(List(EOC)), o1086) | =(matching1, 1)
1674_0_getTail_Return(EOS(STATIC_1674), matching1, java.lang.Object(List(EOC)), o1082) → 1689_0_length_InvokeMethod(EOS(STATIC_1689), 1, o1082) | =(matching1, 1)
1675_0_length_InvokeMethod(EOS(STATIC_1675), matching1, o1080) → 1690_1_length_InvokeMethod(1690_0_length_Load(EOS(STATIC_1690), o1080), 1, o1080) | =(matching1, 1)
1682_0_getTail_Return(EOS(STATIC_1682), matching1, java.lang.Object(List(o1083sub)), o1084) → 1686_0_getTail_Return(EOS(STATIC_1686), 1, java.lang.Object(List(o1083sub)), o1084) | =(matching1, 1)
1686_0_getTail_Return(EOS(STATIC_1686), matching1, java.lang.Object(List(EOC)), o1086) → 1696_0_length_InvokeMethod(EOS(STATIC_1696), 1, o1086) | =(matching1, 1)
1689_0_length_InvokeMethod(EOS(STATIC_1689), matching1, o1082) → 1697_1_length_InvokeMethod(1697_0_length_Load(EOS(STATIC_1697), o1082), 1, o1082) | =(matching1, 1)
1690_0_length_Load(EOS(STATIC_1690), o1080) → 1699_0_length_Load(EOS(STATIC_1699), o1080)
1690_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL, matching1), matching2, NULL) → 1720_0_length_Return(EOS(STATIC_1720), 1, NULL, NULL, 0) | &&(=(matching1, 0), =(matching2, 1))
1690_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732), matching1), matching2, java.lang.Object(List(EOC))) → 1761_0_length_Return(EOS(STATIC_1761), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1690_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737), matching1), matching2, java.lang.Object(List(EOC))) → 1773_0_length_Return(EOS(STATIC_1773), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1690_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741), matching1), matching2, java.lang.Object(List(EOC))) → 1793_0_length_Return(EOS(STATIC_1793), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1690_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393), i1240), matching1, java.lang.Object(List(EOC))) → 2461_0_length_Return(EOS(STATIC_2461), 1, java.lang.Object(List(EOC)), i1240) | =(matching1, 1)
1690_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400), i1247), matching1, java.lang.Object(List(EOC))) → 2473_0_length_Return(EOS(STATIC_2473), 1, java.lang.Object(List(EOC)), i1247) | =(matching1, 1)
1690_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408), i1257), matching1, java.lang.Object(List(EOC))) → 2484_0_length_Return(EOS(STATIC_2484), 1, java.lang.Object(List(EOC)), i1257) | =(matching1, 1)
1696_0_length_InvokeMethod(EOS(STATIC_1696), matching1, o1086) → 1702_1_length_InvokeMethod(1702_0_length_Load(EOS(STATIC_1702), o1086), 1, o1086) | =(matching1, 1)
1697_0_length_Load(EOS(STATIC_1697), o1082) → 1703_0_length_Load(EOS(STATIC_1703), o1082)
1697_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL, matching1), matching2, NULL) → 1725_0_length_Return(EOS(STATIC_1725), 1, NULL, NULL, 0) | &&(=(matching1, 0), =(matching2, 1))
1697_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732), matching1), matching2, java.lang.Object(List(EOC))) → 1762_0_length_Return(EOS(STATIC_1762), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1697_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737), matching1), matching2, java.lang.Object(List(EOC))) → 1775_0_length_Return(EOS(STATIC_1775), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1697_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741), matching1), matching2, java.lang.Object(List(EOC))) → 1795_0_length_Return(EOS(STATIC_1795), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1697_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393), i1240), matching1, java.lang.Object(List(EOC))) → 2463_0_length_Return(EOS(STATIC_2463), 1, java.lang.Object(List(EOC)), i1240) | =(matching1, 1)
1697_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400), i1247), matching1, java.lang.Object(List(EOC))) → 2476_0_length_Return(EOS(STATIC_2476), 1, java.lang.Object(List(EOC)), i1247) | =(matching1, 1)
1697_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408), i1257), matching1, java.lang.Object(List(EOC))) → 2487_0_length_Return(EOS(STATIC_2487), 1, java.lang.Object(List(EOC)), i1257) | =(matching1, 1)
1699_0_length_Load(EOS(STATIC_1699), o1080) → 1708_0_length_Load(EOS(STATIC_1708), o1080)
1702_0_length_Load(EOS(STATIC_1702), o1086) → 1706_0_length_Load(EOS(STATIC_1706), o1086)
1702_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL, matching1), matching2, NULL) → 1729_0_length_Return(EOS(STATIC_1729), 1, NULL, NULL, 0) | &&(=(matching1, 0), =(matching2, 1))
1702_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732), matching1), matching2, java.lang.Object(List(EOC))) → 1764_0_length_Return(EOS(STATIC_1764), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1702_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737), matching1), matching2, java.lang.Object(List(EOC))) → 1778_0_length_Return(EOS(STATIC_1778), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1702_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741), matching1), matching2, java.lang.Object(List(EOC))) → 1798_0_length_Return(EOS(STATIC_1798), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1702_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393), i1240), matching1, java.lang.Object(List(EOC))) → 2467_0_length_Return(EOS(STATIC_2467), 1, java.lang.Object(List(EOC)), i1240) | =(matching1, 1)
1702_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400), i1247), matching1, java.lang.Object(List(EOC))) → 2478_0_length_Return(EOS(STATIC_2478), 1, java.lang.Object(List(EOC)), i1247) | =(matching1, 1)
1702_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408), i1257), matching1, java.lang.Object(List(EOC))) → 2489_0_length_Return(EOS(STATIC_2489), 1, java.lang.Object(List(EOC)), i1257) | =(matching1, 1)
1703_0_length_Load(EOS(STATIC_1703), o1082) → 1711_0_length_Load(EOS(STATIC_1711), o1082)
1706_0_length_Load(EOS(STATIC_1706), o1086) → 1717_0_length_Load(EOS(STATIC_1717), o1086)
1720_0_length_Return(EOS(STATIC_1720), matching1, NULL, NULL, matching2) → 1726_0_length_IntArithmetic(EOS(STATIC_1726), 1, 0) | &&(=(matching1, 1), =(matching2, 0))
1725_0_length_Return(EOS(STATIC_1725), matching1, NULL, NULL, matching2) → 1730_0_length_IntArithmetic(EOS(STATIC_1730), 1, 0) | &&(=(matching1, 1), =(matching2, 0))
1726_0_length_IntArithmetic(EOS(STATIC_1726), matching1, matching2) → 1732_0_length_Return(EOS(STATIC_1732), 1) | &&(=(matching1, 1), =(matching2, 0))
1729_0_length_Return(EOS(STATIC_1729), matching1, NULL, NULL, matching2) → 1736_0_length_IntArithmetic(EOS(STATIC_1736), 1, 0) | &&(=(matching1, 1), =(matching2, 0))
1730_0_length_IntArithmetic(EOS(STATIC_1730), matching1, matching2) → 1737_0_length_Return(EOS(STATIC_1737), 1) | &&(=(matching1, 1), =(matching2, 0))
1736_0_length_IntArithmetic(EOS(STATIC_1736), matching1, matching2) → 1741_0_length_Return(EOS(STATIC_1741), 1) | &&(=(matching1, 1), =(matching2, 0))
1761_0_length_Return(EOS(STATIC_1761), matching1, java.lang.Object(List(EOC)), matching2) → 1860_0_length_Return(EOS(STATIC_1860), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1762_0_length_Return(EOS(STATIC_1762), matching1, java.lang.Object(List(EOC)), matching2) → 1871_0_length_Return(EOS(STATIC_1871), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1764_0_length_Return(EOS(STATIC_1764), matching1, java.lang.Object(List(EOC)), matching2) → 1882_0_length_Return(EOS(STATIC_1882), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1773_0_length_Return(EOS(STATIC_1773), matching1, java.lang.Object(List(EOC)), matching2) → 1761_0_length_Return(EOS(STATIC_1761), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1775_0_length_Return(EOS(STATIC_1775), matching1, java.lang.Object(List(EOC)), matching2) → 1762_0_length_Return(EOS(STATIC_1762), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1778_0_length_Return(EOS(STATIC_1778), matching1, java.lang.Object(List(EOC)), matching2) → 1764_0_length_Return(EOS(STATIC_1764), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1793_0_length_Return(EOS(STATIC_1793), matching1, java.lang.Object(List(EOC)), matching2) → 1761_0_length_Return(EOS(STATIC_1761), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1795_0_length_Return(EOS(STATIC_1795), matching1, java.lang.Object(List(EOC)), matching2) → 1762_0_length_Return(EOS(STATIC_1762), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1798_0_length_Return(EOS(STATIC_1798), matching1, java.lang.Object(List(EOC)), matching2) → 1764_0_length_Return(EOS(STATIC_1764), 1, java.lang.Object(List(EOC)), 1) | &&(=(matching1, 1), =(matching2, 1))
1860_0_length_Return(EOS(STATIC_1860), matching1, java.lang.Object(List(EOC)), i734) → 1969_0_length_Return(EOS(STATIC_1969), 1, java.lang.Object(List(EOC)), i734) | =(matching1, 1)
1871_0_length_Return(EOS(STATIC_1871), matching1, java.lang.Object(List(EOC)), i752) → 1981_0_length_Return(EOS(STATIC_1981), 1, java.lang.Object(List(EOC)), i752) | =(matching1, 1)
1882_0_length_Return(EOS(STATIC_1882), matching1, java.lang.Object(List(EOC)), i768) → 1997_0_length_Return(EOS(STATIC_1997), 1, java.lang.Object(List(EOC)), i768) | =(matching1, 1)
1969_0_length_Return(EOS(STATIC_1969), matching1, java.lang.Object(List(EOC)), i860) → 2166_0_length_Return(EOS(STATIC_2166), 1, java.lang.Object(List(EOC)), i860) | =(matching1, 1)
1981_0_length_Return(EOS(STATIC_1981), matching1, java.lang.Object(List(EOC)), i878) → 2180_0_length_Return(EOS(STATIC_2180), 1, java.lang.Object(List(EOC)), i878) | =(matching1, 1)
1997_0_length_Return(EOS(STATIC_1997), matching1, java.lang.Object(List(EOC)), i894) → 2189_0_length_Return(EOS(STATIC_2189), 1, java.lang.Object(List(EOC)), i894) | =(matching1, 1)
2166_0_length_Return(EOS(STATIC_2166), matching1, java.lang.Object(List(EOC)), i1023) → 2311_0_length_Return(EOS(STATIC_2311), 1, java.lang.Object(List(EOC)), i1023) | =(matching1, 1)
2180_0_length_Return(EOS(STATIC_2180), matching1, java.lang.Object(List(EOC)), i1041) → 2321_0_length_Return(EOS(STATIC_2321), 1, java.lang.Object(List(EOC)), i1041) | =(matching1, 1)
2189_0_length_Return(EOS(STATIC_2189), matching1, java.lang.Object(List(EOC)), i1057) → 2333_0_length_Return(EOS(STATIC_2333), 1, java.lang.Object(List(EOC)), i1057) | =(matching1, 1)
2311_0_length_Return(EOS(STATIC_2311), matching1, java.lang.Object(List(EOC)), i1156) → 2376_0_length_IntArithmetic(EOS(STATIC_2376), 1, i1156) | =(matching1, 1)
2321_0_length_Return(EOS(STATIC_2321), matching1, java.lang.Object(List(EOC)), i1176) → 2380_0_length_IntArithmetic(EOS(STATIC_2380), 1, i1176) | =(matching1, 1)
2333_0_length_Return(EOS(STATIC_2333), matching1, java.lang.Object(List(EOC)), i1192) → 2385_0_length_IntArithmetic(EOS(STATIC_2385), 1, i1192) | =(matching1, 1)
2376_0_length_IntArithmetic(EOS(STATIC_2376), matching1, i1156) → 2393_0_length_Return(EOS(STATIC_2393), +(1, i1156)) | &&(>(i1156, 0), =(matching1, 1))
2380_0_length_IntArithmetic(EOS(STATIC_2380), matching1, i1176) → 2400_0_length_Return(EOS(STATIC_2400), +(1, i1176)) | &&(>(i1176, 0), =(matching1, 1))
2385_0_length_IntArithmetic(EOS(STATIC_2385), matching1, i1192) → 2408_0_length_Return(EOS(STATIC_2408), +(1, i1192)) | &&(>(i1192, 0), =(matching1, 1))
2461_0_length_Return(EOS(STATIC_2461), matching1, java.lang.Object(List(EOC)), i1240) → 2311_0_length_Return(EOS(STATIC_2311), 1, java.lang.Object(List(EOC)), i1240) | =(matching1, 1)
2463_0_length_Return(EOS(STATIC_2463), matching1, java.lang.Object(List(EOC)), i1240) → 2321_0_length_Return(EOS(STATIC_2321), 1, java.lang.Object(List(EOC)), i1240) | =(matching1, 1)
2467_0_length_Return(EOS(STATIC_2467), matching1, java.lang.Object(List(EOC)), i1240) → 2333_0_length_Return(EOS(STATIC_2333), 1, java.lang.Object(List(EOC)), i1240) | =(matching1, 1)
2473_0_length_Return(EOS(STATIC_2473), matching1, java.lang.Object(List(EOC)), i1247) → 2311_0_length_Return(EOS(STATIC_2311), 1, java.lang.Object(List(EOC)), i1247) | =(matching1, 1)
2476_0_length_Return(EOS(STATIC_2476), matching1, java.lang.Object(List(EOC)), i1247) → 2321_0_length_Return(EOS(STATIC_2321), 1, java.lang.Object(List(EOC)), i1247) | =(matching1, 1)
2478_0_length_Return(EOS(STATIC_2478), matching1, java.lang.Object(List(EOC)), i1247) → 2333_0_length_Return(EOS(STATIC_2333), 1, java.lang.Object(List(EOC)), i1247) | =(matching1, 1)
2484_0_length_Return(EOS(STATIC_2484), matching1, java.lang.Object(List(EOC)), i1257) → 2311_0_length_Return(EOS(STATIC_2311), 1, java.lang.Object(List(EOC)), i1257) | =(matching1, 1)
2487_0_length_Return(EOS(STATIC_2487), matching1, java.lang.Object(List(EOC)), i1257) → 2321_0_length_Return(EOS(STATIC_2321), 1, java.lang.Object(List(EOC)), i1257) | =(matching1, 1)
2489_0_length_Return(EOS(STATIC_2489), matching1, java.lang.Object(List(EOC)), i1257) → 2333_0_length_Return(EOS(STATIC_2333), 1, java.lang.Object(List(EOC)), i1257) | =(matching1, 1)
1765_0_test_LT(EOS(STATIC_1765), java.lang.Object(ARRAY(matching1)), matching2, matching3) → 1789_0_test_LT(EOS(STATIC_1789), java.lang.Object(ARRAY(3)), -1, -1) | &&(&&(=(matching1, 3), =(matching2, -1)), =(matching3, -1))
1789_0_test_LT(EOS(STATIC_1789), java.lang.Object(ARRAY(matching1)), matching2, matching3) → 1815_0_test_Return(EOS(STATIC_1815)) | &&(&&(&&(<(-1, 0), =(matching1, 3)), =(matching2, -1)), =(matching3, -1))
4359_1_test_InvokeMethod(1815_0_test_Return(EOS(STATIC_1815)), java.lang.Object(ARRAY(matching1)), matching2) → 4374_0_test_Return(EOS(STATIC_4374), java.lang.Object(ARRAY(3)), -1) | &&(=(matching1, 3), =(matching2, -1))
4359_1_test_InvokeMethod(4428_0_test_Return(EOS(STATIC_4428)), java.lang.Object(ARRAY(matching1)), i2086) → 4454_0_test_Return(EOS(STATIC_4454), java.lang.Object(ARRAY(3)), i2086) | =(matching1, 3)
4374_0_test_Return(EOS(STATIC_4374), java.lang.Object(ARRAY(matching1)), matching2) → 4417_0_test_Return(EOS(STATIC_4417), java.lang.Object(ARRAY(3)), -1) | &&(=(matching1, 3), =(matching2, -1))
4417_0_test_Return(EOS(STATIC_4417), java.lang.Object(ARRAY(matching1)), i2074) → 4428_0_test_Return(EOS(STATIC_4428)) | =(matching1, 3)
4454_0_test_Return(EOS(STATIC_4454), java.lang.Object(ARRAY(matching1)), i2086) → 4417_0_test_Return(EOS(STATIC_4417), java.lang.Object(ARRAY(3)), i2086) | =(matching1, 3)
4265_0_bubble_Load(EOS(STATIC_4265), o6413) → 4266_0_bubble_NULL(EOS(STATIC_4266), o6413, o6413)
4266_0_bubble_NULL(EOS(STATIC_4266), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4267_0_bubble_NULL(EOS(STATIC_4267), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4266_0_bubble_NULL(EOS(STATIC_4266), NULL, NULL) → 4268_0_bubble_NULL(EOS(STATIC_4268), NULL, NULL)
4267_0_bubble_NULL(EOS(STATIC_4267), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4270_0_bubble_Load(EOS(STATIC_4270), java.lang.Object(o6420sub))
4268_0_bubble_NULL(EOS(STATIC_4268), NULL, NULL) → 4271_0_bubble_Return(EOS(STATIC_4271), NULL)
4270_0_bubble_Load(EOS(STATIC_4270), java.lang.Object(o6420sub)) → 4272_0_bubble_InvokeMethod(EOS(STATIC_4272), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4272_0_bubble_InvokeMethod(EOS(STATIC_4272), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4275_0_getTail_Load(EOS(STATIC_4275), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4275_0_getTail_Load(EOS(STATIC_4275), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4286_0_getTail_FieldAccess(EOS(STATIC_4286), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4286_0_getTail_FieldAccess(EOS(STATIC_4286), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4291_0_getTail_FieldAccess(EOS(STATIC_4291), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4286_0_getTail_FieldAccess(EOS(STATIC_4286), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4292_0_getTail_FieldAccess(EOS(STATIC_4292), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4291_0_getTail_FieldAccess(EOS(STATIC_4291), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4295_0_getTail_FieldAccess(EOS(STATIC_4295), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4291_0_getTail_FieldAccess(EOS(STATIC_4291), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4296_0_getTail_FieldAccess(EOS(STATIC_4296), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4292_0_getTail_FieldAccess(EOS(STATIC_4292), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 4297_0_getTail_FieldAccess(EOS(STATIC_4297), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)))
4295_0_getTail_FieldAccess(EOS(STATIC_4295), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4307_0_getTail_FieldAccess(EOS(STATIC_4307), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4295_0_getTail_FieldAccess(EOS(STATIC_4295), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub)) → 4308_0_getTail_FieldAccess(EOS(STATIC_4308), java.lang.Object(o6420sub), java.lang.Object(o6420sub), java.lang.Object(o6420sub))
4296_0_getTail_FieldAccess(EOS(STATIC_4296), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 4309_0_getTail_FieldAccess(EOS(STATIC_4309), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)))
4297_0_getTail_FieldAccess(EOS(STATIC_4297), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 4310_0_getTail_Return(EOS(STATIC_4310), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), o6444)
4307_0_getTail_FieldAccess(EOS(STATIC_4307), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4313_0_getTail_FieldAccess(EOS(STATIC_4313), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4308_0_getTail_FieldAccess(EOS(STATIC_4308), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 4314_0_getTail_FieldAccess(EOS(STATIC_4314), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)))
4309_0_getTail_FieldAccess(EOS(STATIC_4309), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 4317_0_getTail_Return(EOS(STATIC_4317), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), o6464)
4310_0_getTail_Return(EOS(STATIC_4310), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), o6444) → 4317_0_getTail_Return(EOS(STATIC_4317), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), o6444)
4313_0_getTail_FieldAccess(EOS(STATIC_4313), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4324_0_getTail_Return(EOS(STATIC_4324), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)), o6470)
4314_0_getTail_FieldAccess(EOS(STATIC_4314), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 4326_0_getTail_Return(EOS(STATIC_4326), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), o6473)
4317_0_getTail_Return(EOS(STATIC_4317), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), o6464) → 4324_0_getTail_Return(EOS(STATIC_4324), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), o6464)
4324_0_getTail_Return(EOS(STATIC_4324), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)), o6470) → 4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(o6469sub)), o6470)
4326_0_getTail_Return(EOS(STATIC_4326), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), o6473) → 4334_0_bubble_NONNULL(EOS(STATIC_4334), java.lang.Object(List(EOC)), o6473)
4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(o6469sub)), java.lang.Object(o6520sub)) → 4339_0_bubble_NONNULL(EOS(STATIC_4339), java.lang.Object(List(o6469sub)), java.lang.Object(o6520sub))
4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(o6469sub)), NULL) → 4340_0_bubble_NONNULL(EOS(STATIC_4340), java.lang.Object(List(o6469sub)), NULL)
4334_0_bubble_NONNULL(EOS(STATIC_4334), java.lang.Object(List(EOC)), o6473) → 4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(EOC)), o6473)
4339_0_bubble_NONNULL(EOS(STATIC_4339), java.lang.Object(List(o6469sub)), java.lang.Object(o6520sub)) → 4344_0_bubble_Load(EOS(STATIC_4344), java.lang.Object(List(o6469sub)))
4340_0_bubble_NONNULL(EOS(STATIC_4340), java.lang.Object(List(o6469sub)), NULL) → 4345_0_bubble_Return(EOS(STATIC_4345), java.lang.Object(List(o6469sub)))
4344_0_bubble_Load(EOS(STATIC_4344), java.lang.Object(List(o6469sub))) → 4349_0_bubble_FieldAccess(EOS(STATIC_4349), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4349_0_bubble_FieldAccess(EOS(STATIC_4349), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4354_0_bubble_Load(EOS(STATIC_4354), java.lang.Object(List(o6469sub)), i2060)
4354_0_bubble_Load(EOS(STATIC_4354), java.lang.Object(List(o6469sub)), i2060) → 4358_0_bubble_InvokeMethod(EOS(STATIC_4358), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)))
4358_0_bubble_InvokeMethod(EOS(STATIC_4358), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub))) → 4362_0_getTail_Load(EOS(STATIC_4362), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4362_0_getTail_Load(EOS(STATIC_4362), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4367_0_getTail_FieldAccess(EOS(STATIC_4367), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4367_0_getTail_FieldAccess(EOS(STATIC_4367), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4373_0_getTail_Return(EOS(STATIC_4373), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(o6520sub))
4373_0_getTail_Return(EOS(STATIC_4373), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(o6520sub)) → 4378_0_bubble_FieldAccess(EOS(STATIC_4378), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub))
4378_0_bubble_FieldAccess(EOS(STATIC_4378), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub)) → 4383_0_bubble_FieldAccess(EOS(STATIC_4383), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub))
4378_0_bubble_FieldAccess(EOS(STATIC_4378), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub)) → 4384_0_bubble_FieldAccess(EOS(STATIC_4384), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub))
4383_0_bubble_FieldAccess(EOS(STATIC_4383), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub)) → 4392_0_bubble_FieldAccess(EOS(STATIC_4392), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub))
4383_0_bubble_FieldAccess(EOS(STATIC_4383), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub)) → 4393_0_bubble_FieldAccess(EOS(STATIC_4393), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub))
4384_0_bubble_FieldAccess(EOS(STATIC_4384), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC))) → 4394_0_bubble_FieldAccess(EOS(STATIC_4394), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC)))
4392_0_bubble_FieldAccess(EOS(STATIC_4392), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub)) → 4406_0_bubble_FieldAccess(EOS(STATIC_4406), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub))
4392_0_bubble_FieldAccess(EOS(STATIC_4392), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub)) → 4407_0_bubble_FieldAccess(EOS(STATIC_4407), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(o6520sub))
4393_0_bubble_FieldAccess(EOS(STATIC_4393), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC))) → 4408_0_bubble_FieldAccess(EOS(STATIC_4408), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC)))
4394_0_bubble_FieldAccess(EOS(STATIC_4394), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC))) → 4410_0_bubble_LE(EOS(STATIC_4410), java.lang.Object(List(o6469sub)), i2060, i2070)
4406_0_bubble_FieldAccess(EOS(STATIC_4406), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC))) → 4420_0_bubble_FieldAccess(EOS(STATIC_4420), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC)))
4407_0_bubble_FieldAccess(EOS(STATIC_4407), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC))) → 4421_0_bubble_FieldAccess(EOS(STATIC_4421), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC)))
4408_0_bubble_FieldAccess(EOS(STATIC_4408), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC))) → 4424_0_bubble_LE(EOS(STATIC_4424), java.lang.Object(List(o6469sub)), i2060, i2073)
4410_0_bubble_LE(EOS(STATIC_4410), java.lang.Object(List(o6469sub)), i2060, i2070) → 4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(o6469sub)), i2060, i2070)
4420_0_bubble_FieldAccess(EOS(STATIC_4420), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC))) → 4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(o6469sub)), i2060, i2075)
4421_0_bubble_FieldAccess(EOS(STATIC_4421), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC))) → 4438_0_bubble_LE(EOS(STATIC_4438), java.lang.Object(List(o6469sub)), i2060, i2076)
4424_0_bubble_LE(EOS(STATIC_4424), java.lang.Object(List(o6469sub)), i2060, i2073) → 4410_0_bubble_LE(EOS(STATIC_4410), java.lang.Object(List(o6469sub)), i2060, i2073)
4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(o6469sub)), i2060, i2075) → 4445_0_bubble_LE(EOS(STATIC_4445), java.lang.Object(List(o6469sub)), i2060, i2075)
4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(o6469sub)), i2060, i2075) → 4446_0_bubble_LE(EOS(STATIC_4446), java.lang.Object(List(o6469sub)), i2060, i2075)
4438_0_bubble_LE(EOS(STATIC_4438), java.lang.Object(List(o6469sub)), i2060, i2076) → 4434_0_bubble_LE(EOS(STATIC_4434), java.lang.Object(List(o6469sub)), i2060, i2076)
4445_0_bubble_LE(EOS(STATIC_4445), java.lang.Object(List(o6469sub)), i2060, i2075) → 4448_0_bubble_Load(EOS(STATIC_4448), java.lang.Object(List(o6469sub))) | <=(i2060, i2075)
4446_0_bubble_LE(EOS(STATIC_4446), java.lang.Object(List(o6469sub)), i2060, i2075) → 4450_0_bubble_Load(EOS(STATIC_4450), java.lang.Object(List(o6469sub))) | >(i2060, i2075)
4448_0_bubble_Load(EOS(STATIC_4448), java.lang.Object(List(o6469sub))) → 4534_0_bubble_Load(EOS(STATIC_4534), java.lang.Object(List(o6469sub)))
4450_0_bubble_Load(EOS(STATIC_4450), java.lang.Object(List(o6469sub))) → 4457_0_bubble_FieldAccess(EOS(STATIC_4457), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4457_0_bubble_FieldAccess(EOS(STATIC_4457), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4459_0_bubble_Store(EOS(STATIC_4459), java.lang.Object(List(o6469sub)), i2060)
4459_0_bubble_Store(EOS(STATIC_4459), java.lang.Object(List(o6469sub)), i2060) → 4461_0_bubble_Load(EOS(STATIC_4461), java.lang.Object(List(o6469sub)), i2060)
4461_0_bubble_Load(EOS(STATIC_4461), java.lang.Object(List(o6469sub)), i2060) → 4463_0_bubble_Load(EOS(STATIC_4463), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)))
4463_0_bubble_Load(EOS(STATIC_4463), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub))) → 4467_0_bubble_InvokeMethod(EOS(STATIC_4467), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4467_0_bubble_InvokeMethod(EOS(STATIC_4467), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4469_0_getTail_Load(EOS(STATIC_4469), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4469_0_getTail_Load(EOS(STATIC_4469), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4474_0_getTail_FieldAccess(EOS(STATIC_4474), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4474_0_getTail_FieldAccess(EOS(STATIC_4474), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4476_0_getTail_Return(EOS(STATIC_4476), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)), java.lang.Object(List(EOC)))
4476_0_getTail_Return(EOS(STATIC_4476), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)), java.lang.Object(List(EOC))) → 4482_0_bubble_FieldAccess(EOS(STATIC_4482), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(EOC)))
4482_0_bubble_FieldAccess(EOS(STATIC_4482), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(EOC))) → 4486_0_bubble_FieldAccess(EOS(STATIC_4486), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), i2075)
4486_0_bubble_FieldAccess(EOS(STATIC_4486), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), i2075) → 4489_0_bubble_Load(EOS(STATIC_4489), java.lang.Object(List(o6469sub)), i2060)
4489_0_bubble_Load(EOS(STATIC_4489), java.lang.Object(List(o6469sub)), i2060) → 4491_0_bubble_InvokeMethod(EOS(STATIC_4491), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)))
4491_0_bubble_InvokeMethod(EOS(STATIC_4491), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub))) → 4495_0_getTail_Load(EOS(STATIC_4495), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4495_0_getTail_Load(EOS(STATIC_4495), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4503_0_getTail_FieldAccess(EOS(STATIC_4503), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4503_0_getTail_FieldAccess(EOS(STATIC_4503), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4508_0_getTail_Return(EOS(STATIC_4508), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(EOC)))
4508_0_getTail_Return(EOS(STATIC_4508), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(o6469sub)), java.lang.Object(List(EOC))) → 4515_0_bubble_Load(EOS(STATIC_4515), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC)))
4515_0_bubble_Load(EOS(STATIC_4515), java.lang.Object(List(o6469sub)), i2060, java.lang.Object(List(EOC))) → 4525_0_bubble_FieldAccess(EOS(STATIC_4525), java.lang.Object(List(o6469sub)), java.lang.Object(List(EOC)), i2060)
4525_0_bubble_FieldAccess(EOS(STATIC_4525), java.lang.Object(List(o6469sub)), java.lang.Object(List(EOC)), i2060) → 4534_0_bubble_Load(EOS(STATIC_4534), java.lang.Object(List(o6469sub)))
4534_0_bubble_Load(EOS(STATIC_4534), java.lang.Object(List(o6469sub))) → 4537_0_bubble_InvokeMethod(EOS(STATIC_4537), java.lang.Object(List(o6469sub)))
4537_0_bubble_InvokeMethod(EOS(STATIC_4537), java.lang.Object(List(o6469sub))) → 4541_0_getTail_Load(EOS(STATIC_4541), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4541_0_getTail_Load(EOS(STATIC_4541), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4543_0_getTail_FieldAccess(EOS(STATIC_4543), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub)))
4543_0_getTail_FieldAccess(EOS(STATIC_4543), java.lang.Object(List(o6469sub)), java.lang.Object(List(o6469sub))) → 4545_0_getTail_Return(EOS(STATIC_4545), java.lang.Object(List(o6469sub)), java.lang.Object(List(EOC)))
4545_0_getTail_Return(EOS(STATIC_4545), java.lang.Object(List(o6469sub)), java.lang.Object(List(EOC))) → 4546_0_bubble_InvokeMethod(EOS(STATIC_4546), java.lang.Object(List(EOC)))
4546_0_bubble_InvokeMethod(EOS(STATIC_4546), java.lang.Object(List(EOC))) → 4548_1_bubble_InvokeMethod(4548_0_bubble_Load(EOS(STATIC_4548), java.lang.Object(List(EOC))), java.lang.Object(List(EOC)))
4548_0_bubble_Load(EOS(STATIC_4548), java.lang.Object(List(EOC))) → 4549_0_bubble_Load(EOS(STATIC_4549), java.lang.Object(List(EOC)))
4548_1_bubble_InvokeMethod(4345_0_bubble_Return(EOS(STATIC_4345), java.lang.Object(List(EOC))), java.lang.Object(List(EOC))) → 4555_0_bubble_Return(EOS(STATIC_4555), java.lang.Object(List(EOC)), java.lang.Object(List(EOC)))
4548_1_bubble_InvokeMethod(4556_0_bubble_Return(EOS(STATIC_4556)), java.lang.Object(List(EOC))) → 4564_0_bubble_Return(EOS(STATIC_4564), java.lang.Object(List(EOC)))
4548_1_bubble_InvokeMethod(4577_0_bubble_Return(EOS(STATIC_4577)), java.lang.Object(List(EOC))) → 4587_0_bubble_Return(EOS(STATIC_4587), java.lang.Object(List(EOC)))
4555_0_bubble_Return(EOS(STATIC_4555), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 4556_0_bubble_Return(EOS(STATIC_4556))
4564_0_bubble_Return(EOS(STATIC_4564), java.lang.Object(List(EOC))) → 4575_0_bubble_Return(EOS(STATIC_4575), java.lang.Object(List(EOC)))
4575_0_bubble_Return(EOS(STATIC_4575), java.lang.Object(List(EOC))) → 4577_0_bubble_Return(EOS(STATIC_4577))
4587_0_bubble_Return(EOS(STATIC_4587), java.lang.Object(List(EOC))) → 4575_0_bubble_Return(EOS(STATIC_4575), java.lang.Object(List(EOC)))
Combined rules. Obtained 13 conditional rules for P and 37 conditional rules for R.
P rules:
1915_1_test_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL, 0), java.lang.Object(ARRAY(3)), x2, NULL) → 4359_1_test_InvokeMethod(1915_1_test_InvokeMethod(1915_0_length_Load(EOS(STATIC_1915), x3), java.lang.Object(ARRAY(3)), -(x2, 1), x3), java.lang.Object(ARRAY(3)), -(x2, 1)) | &&(>(+(x2, 1), 1), <(x2, 4))
1915_1_test_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393), x0), java.lang.Object(ARRAY(3)), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x2, x0, 0, 0, x0)
1915_1_test_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400), x0), java.lang.Object(ARRAY(3)), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x2, x0, 0, 0, x0)
1915_1_test_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408), x0), java.lang.Object(ARRAY(3)), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x2, x0, 0, 0, x0)
1915_1_test_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741), 1), java.lang.Object(ARRAY(3)), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x2, 1, 0, 0, 1)
1915_1_test_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732), 1), java.lang.Object(ARRAY(3)), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x2, 1, 0, 0, 1)
1915_1_test_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737), 1), java.lang.Object(ARRAY(3)), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x2, 1, 0, 0, 1)
4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x1, x2, x3, x3, x2) → 4359_1_test_InvokeMethod(1915_1_test_InvokeMethod(1915_0_length_Load(EOS(STATIC_1915), x4), java.lang.Object(ARRAY(3)), -(x1, 1), x4), java.lang.Object(ARRAY(3)), -(x1, 1)) | &&(&&(>=(x3, x2), >(+(x1, 1), 1)), <(x1, 4))
4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x1, x2, x3, x3, x2) → 4356_1_test_InvokeMethod(4356_0_bubble_Load(EOS(STATIC_4356), x4), java.lang.Object(ARRAY(3)), x1, x2, x3, x4) | &&(<(x3, x2), <(x1, 3))
4356_1_test_InvokeMethod(4271_0_bubble_Return(EOS(STATIC_4271), NULL), java.lang.Object(ARRAY(3)), x1, x2, x3, NULL) → 4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x1, x2, +(x3, 1), +(x3, 1), x2)
4356_1_test_InvokeMethod(4345_0_bubble_Return(EOS(STATIC_4345), java.lang.Object(List(x0))), java.lang.Object(ARRAY(3)), x2, x3, x4, java.lang.Object(List(x0))) → 4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x2, x3, +(x4, 1), +(x4, 1), x3)
4356_1_test_InvokeMethod(4556_0_bubble_Return(EOS(STATIC_4556)), java.lang.Object(ARRAY(3)), x1, x2, x3, x4) → 4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x1, x2, +(x3, 1), +(x3, 1), x2)
4356_1_test_InvokeMethod(4577_0_bubble_Return(EOS(STATIC_4577)), java.lang.Object(ARRAY(3)), x1, x2, x3, x4) → 4320_0_test_GE(EOS(STATIC_4320), java.lang.Object(ARRAY(3)), x1, x2, +(x3, 1), +(x3, 1), x2)
R rules:
1915_0_length_Load(EOS(STATIC_1915), x0) → 1627_0_length_NONNULL(EOS(STATIC_1627), x0, x0)
4356_0_bubble_Load(EOS(STATIC_4356), x0) → 4266_0_bubble_NULL(EOS(STATIC_4266), x0, x0)
1627_0_length_NONNULL(EOS(STATIC_1627), NULL, NULL) → 1635_0_length_Return(EOS(STATIC_1635), NULL, 0)
1627_0_length_NONNULL(EOS(STATIC_1627), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 1690_1_length_InvokeMethod(1627_0_length_NONNULL(EOS(STATIC_1627), x0, x0), 1, x0)
1627_0_length_NONNULL(EOS(STATIC_1627), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 1697_1_length_InvokeMethod(1627_0_length_NONNULL(EOS(STATIC_1627), x0, x0), 1, x0)
1627_0_length_NONNULL(EOS(STATIC_1627), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 1702_1_length_InvokeMethod(1627_0_length_NONNULL(EOS(STATIC_1627), x0, x0), 1, x0)
1690_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL, 0), 1, NULL) → 1732_0_length_Return(EOS(STATIC_1732), 1)
1697_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL, 0), 1, NULL) → 1737_0_length_Return(EOS(STATIC_1737), 1)
1702_1_length_InvokeMethod(1635_0_length_Return(EOS(STATIC_1635), NULL, 0), 1, NULL) → 1741_0_length_Return(EOS(STATIC_1741), 1)
1690_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393), x0), 1, java.lang.Object(List(EOC))) → 2393_0_length_Return(EOS(STATIC_2393), +(1, x0)) | >(x0, 0)
1690_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400), x0), 1, java.lang.Object(List(EOC))) → 2393_0_length_Return(EOS(STATIC_2393), +(1, x0)) | >(x0, 0)
1690_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408), x0), 1, java.lang.Object(List(EOC))) → 2393_0_length_Return(EOS(STATIC_2393), +(1, x0)) | >(x0, 0)
1690_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732), 1), 1, java.lang.Object(List(EOC))) → 2393_0_length_Return(EOS(STATIC_2393), 2)
1690_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737), 1), 1, java.lang.Object(List(EOC))) → 2393_0_length_Return(EOS(STATIC_2393), 2)
1690_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741), 1), 1, java.lang.Object(List(EOC))) → 2393_0_length_Return(EOS(STATIC_2393), 2)
1697_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393), x0), 1, java.lang.Object(List(EOC))) → 2400_0_length_Return(EOS(STATIC_2400), +(1, x0)) | >(x0, 0)
1697_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400), x0), 1, java.lang.Object(List(EOC))) → 2400_0_length_Return(EOS(STATIC_2400), +(1, x0)) | >(x0, 0)
1697_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408), x0), 1, java.lang.Object(List(EOC))) → 2400_0_length_Return(EOS(STATIC_2400), +(1, x0)) | >(x0, 0)
1697_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732), 1), 1, java.lang.Object(List(EOC))) → 2400_0_length_Return(EOS(STATIC_2400), 2)
1697_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737), 1), 1, java.lang.Object(List(EOC))) → 2400_0_length_Return(EOS(STATIC_2400), 2)
1697_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741), 1), 1, java.lang.Object(List(EOC))) → 2400_0_length_Return(EOS(STATIC_2400), 2)
1702_1_length_InvokeMethod(2393_0_length_Return(EOS(STATIC_2393), x0), 1, java.lang.Object(List(EOC))) → 2408_0_length_Return(EOS(STATIC_2408), +(1, x0)) | >(x0, 0)
1702_1_length_InvokeMethod(2400_0_length_Return(EOS(STATIC_2400), x0), 1, java.lang.Object(List(EOC))) → 2408_0_length_Return(EOS(STATIC_2408), +(1, x0)) | >(x0, 0)
1702_1_length_InvokeMethod(2408_0_length_Return(EOS(STATIC_2408), x0), 1, java.lang.Object(List(EOC))) → 2408_0_length_Return(EOS(STATIC_2408), +(1, x0)) | >(x0, 0)
1702_1_length_InvokeMethod(1732_0_length_Return(EOS(STATIC_1732), 1), 1, java.lang.Object(List(EOC))) → 2408_0_length_Return(EOS(STATIC_2408), 2)
1702_1_length_InvokeMethod(1737_0_length_Return(EOS(STATIC_1737), 1), 1, java.lang.Object(List(EOC))) → 2408_0_length_Return(EOS(STATIC_2408), 2)
1702_1_length_InvokeMethod(1741_0_length_Return(EOS(STATIC_1741), 1), 1, java.lang.Object(List(EOC))) → 2408_0_length_Return(EOS(STATIC_2408), 2)
4359_1_test_InvokeMethod(1815_0_test_Return(EOS(STATIC_1815)), java.lang.Object(ARRAY(3)), -1) → 4428_0_test_Return(EOS(STATIC_4428))
4359_1_test_InvokeMethod(4428_0_test_Return(EOS(STATIC_4428)), java.lang.Object(ARRAY(3)), x1) → 4428_0_test_Return(EOS(STATIC_4428))
4266_0_bubble_NULL(EOS(STATIC_4266), NULL, NULL) → 4271_0_bubble_Return(EOS(STATIC_4271), NULL)
4266_0_bubble_NULL(EOS(STATIC_4266), java.lang.Object(List(x0)), java.lang.Object(List(x0))) → 4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(x0)), x1)
4266_0_bubble_NULL(EOS(STATIC_4266), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(EOC)), x0)
4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(x0)), NULL) → 4345_0_bubble_Return(EOS(STATIC_4345), java.lang.Object(List(x0)))
4330_0_bubble_NONNULL(EOS(STATIC_4330), java.lang.Object(List(x0)), java.lang.Object(x1)) → 4548_1_bubble_InvokeMethod(4266_0_bubble_NULL(EOS(STATIC_4266), java.lang.Object(List(EOC)), java.lang.Object(List(EOC))), java.lang.Object(List(EOC)))
4548_1_bubble_InvokeMethod(4345_0_bubble_Return(EOS(STATIC_4345), java.lang.Object(List(EOC))), java.lang.Object(List(EOC))) → 4556_0_bubble_Return(EOS(STATIC_4556))
4548_1_bubble_InvokeMethod(4556_0_bubble_Return(EOS(STATIC_4556)), java.lang.Object(List(EOC))) → 4577_0_bubble_Return(EOS(STATIC_4577))
4548_1_bubble_InvokeMethod(4577_0_bubble_Return(EOS(STATIC_4577)), java.lang.Object(List(EOC))) → 4577_0_bubble_Return(EOS(STATIC_4577))
Filtered ground terms:
4320_0_test_GE(x1, x2, x3, x4, x5, x6, x7) → 4320_0_test_GE(x3, x4, x5, x6, x7)
ARRAY(x1) → ARRAY
4356_1_test_InvokeMethod(x1, x2, x3, x4, x5, x6) → 4356_1_test_InvokeMethod(x1, x3, x4, x5, x6)
4577_0_bubble_Return(x1) → 4577_0_bubble_Return
4556_0_bubble_Return(x1) → 4556_0_bubble_Return
4345_0_bubble_Return(x1, x2) → 4345_0_bubble_Return(x2)
4271_0_bubble_Return(x1, x2) → 4271_0_bubble_Return
4356_0_bubble_Load(x1, x2) → 4356_0_bubble_Load(x2)
Cond_4320_0_test_GE1(x1, x2, x3, x4, x5, x6, x7, x8, x9) → Cond_4320_0_test_GE1(x1, x4, x5, x6, x7, x8, x9)
4359_1_test_InvokeMethod(x1, x2, x3) → 4359_1_test_InvokeMethod(x1, x3)
1915_0_length_Load(x1, x2) → 1915_0_length_Load(x2)
1915_1_test_InvokeMethod(x1, x2, x3, x4) → 1915_1_test_InvokeMethod(x1, x3, x4)
Cond_4320_0_test_GE(x1, x2, x3, x4, x5, x6, x7, x8, x9) → Cond_4320_0_test_GE(x1, x4, x5, x6, x7, x8, x9)
1737_0_length_Return(x1, x2) → 1737_0_length_Return
1732_0_length_Return(x1, x2) → 1732_0_length_Return
1741_0_length_Return(x1, x2) → 1741_0_length_Return
2408_0_length_Return(x1, x2) → 2408_0_length_Return(x2)
2400_0_length_Return(x1, x2) → 2400_0_length_Return(x2)
2393_0_length_Return(x1, x2) → 2393_0_length_Return(x2)
Cond_1915_1_test_InvokeMethod(x1, x2, x3, x4, x5, x6) → Cond_1915_1_test_InvokeMethod(x1, x4, x6)
1635_0_length_Return(x1, x2, x3) → 1635_0_length_Return
4548_1_bubble_InvokeMethod(x1, x2) → 4548_1_bubble_InvokeMethod(x1)
4266_0_bubble_NULL(x1, x2, x3) → 4266_0_bubble_NULL(x2, x3)
4330_0_bubble_NONNULL(x1, x2, x3) → 4330_0_bubble_NONNULL(x2, x3)
4428_0_test_Return(x1) → 4428_0_test_Return
1815_0_test_Return(x1) → 1815_0_test_Return
1702_1_length_InvokeMethod(x1, x2, x3) → 1702_1_length_InvokeMethod(x1, x3)
Cond_1702_1_length_InvokeMethod2(x1, x2, x3, x4) → Cond_1702_1_length_InvokeMethod2(x1, x2)
Cond_1702_1_length_InvokeMethod1(x1, x2, x3, x4) → Cond_1702_1_length_InvokeMethod1(x1, x2)
Cond_1702_1_length_InvokeMethod(x1, x2, x3, x4) → Cond_1702_1_length_InvokeMethod(x1, x2)
1697_1_length_InvokeMethod(x1, x2, x3) → 1697_1_length_InvokeMethod(x1, x3)
Cond_1697_1_length_InvokeMethod2(x1, x2, x3, x4) → Cond_1697_1_length_InvokeMethod2(x1, x2)
Cond_1697_1_length_InvokeMethod1(x1, x2, x3, x4) → Cond_1697_1_length_InvokeMethod1(x1, x2)
Cond_1697_1_length_InvokeMethod(x1, x2, x3, x4) → Cond_1697_1_length_InvokeMethod(x1, x2)
1690_1_length_InvokeMethod(x1, x2, x3) → 1690_1_length_InvokeMethod(x1, x3)
Cond_1690_1_length_InvokeMethod2(x1, x2, x3, x4) → Cond_1690_1_length_InvokeMethod2(x1, x2)
Cond_1690_1_length_InvokeMethod1(x1, x2, x3, x4) → Cond_1690_1_length_InvokeMethod1(x1, x2)
Cond_1690_1_length_InvokeMethod(x1, x2, x3, x4) → Cond_1690_1_length_InvokeMethod(x1, x2)
1627_0_length_NONNULL(x1, x2, x3) → 1627_0_length_NONNULL(x2, x3)
Filtered duplicate args:
4320_0_test_GE(x1, x2, x3, x4, x5) → 4320_0_test_GE(x1, x4, x5)
Cond_4320_0_test_GE(x1, x2, x3, x4, x5, x6, x7) → Cond_4320_0_test_GE(x1, x2, x5, x6, x7)
Cond_4320_0_test_GE1(x1, x2, x3, x4, x5, x6, x7) → Cond_4320_0_test_GE1(x1, x2, x5, x6, x7)
1627_0_length_NONNULL(x1, x2) → 1627_0_length_NONNULL(x2)
4266_0_bubble_NULL(x1, x2) → 4266_0_bubble_NULL(x2)
Filtered unneeded arguments:
Cond_4320_0_test_GE(x1, x2, x3, x4, x5) → Cond_4320_0_test_GE(x1, x2, x5)
Filtered free variables in P:
1690_1_length_InvokeMethod(x1, x2) → 1690_1_length_InvokeMethod(x1)
1627_0_length_NONNULL(x1) → 1627_0_length_NONNULL
1697_1_length_InvokeMethod(x1, x2) → 1697_1_length_InvokeMethod(x1)
1702_1_length_InvokeMethod(x1, x2) → 1702_1_length_InvokeMethod(x1)
4330_0_bubble_NONNULL(x1, x2) → 4330_0_bubble_NONNULL(x1)
Current set of rules:
P rules:
1915_1_test_InvokeMethod(1635_0_length_Return, x2, NULL) → Cond_1915_1_test_InvokeMethod(&&(>(+(x2, 1), 1), <(x2, 4)), x2, x3)
Cond_1915_1_test_InvokeMethod(TRUE, x2, x3) → 4359_1_test_InvokeMethod(1915_1_test_InvokeMethod(1915_0_length_Load(x3), -(x2, 1), x3), -(x2, 1))
1915_1_test_InvokeMethod(2393_0_length_Return(x0), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, x0)
1915_1_test_InvokeMethod(2400_0_length_Return(x0), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, x0)
1915_1_test_InvokeMethod(2408_0_length_Return(x0), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, x0)
1915_1_test_InvokeMethod(1741_0_length_Return, x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, 1)
1915_1_test_InvokeMethod(1732_0_length_Return, x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, 1)
1915_1_test_InvokeMethod(1737_0_length_Return, x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, 1)
4320_0_test_GE(x1, x3, x2) → Cond_4320_0_test_GE(&&(&&(>=(x3, x2), >(+(x1, 1), 1)), <(x1, 4)), x1, x4)
Cond_4320_0_test_GE(TRUE, x1, x4) → 4359_1_test_InvokeMethod(1915_1_test_InvokeMethod(1915_0_length_Load(x4), -(x1, 1), x4), -(x1, 1))
4320_0_test_GE(x1, x3, x2) → Cond_4320_0_test_GE1(&&(<(x3, x2), <(x1, 3)), x1, x3, x2, x4)
Cond_4320_0_test_GE1(TRUE, x1, x3, x2, x4) → 4356_1_test_InvokeMethod(4356_0_bubble_Load(x4), x1, x2, x3, x4)
4356_1_test_InvokeMethod(4271_0_bubble_Return, x1, x2, x3, NULL) → 4320_0_test_GE(x1, +(x3, 1), x2)
4356_1_test_InvokeMethod(4345_0_bubble_Return(java.lang.Object(List(x0))), x2, x3, x4, java.lang.Object(List(x0))) → 4320_0_test_GE(x2, +(x4, 1), x3)
4356_1_test_InvokeMethod(4556_0_bubble_Return, x1, x2, x3, x4) → 4320_0_test_GE(x1, +(x3, 1), x2)
4356_1_test_InvokeMethod(4577_0_bubble_Return, x1, x2, x3, x4) → 4320_0_test_GE(x1, +(x3, 1), x2)
R rules:
1915_0_length_Load(x0) → 1627_0_length_NONNULL
4356_0_bubble_Load(x0) → 4266_0_bubble_NULL(x0)
1627_0_length_NONNULL → 1635_0_length_Return
1627_0_length_NONNULL → 1690_1_length_InvokeMethod(1627_0_length_NONNULL)
1627_0_length_NONNULL → 1697_1_length_InvokeMethod(1627_0_length_NONNULL)
1627_0_length_NONNULL → 1702_1_length_InvokeMethod(1627_0_length_NONNULL)
1690_1_length_InvokeMethod(1635_0_length_Return) → 1732_0_length_Return
1697_1_length_InvokeMethod(1635_0_length_Return) → 1737_0_length_Return
1702_1_length_InvokeMethod(1635_0_length_Return) → 1741_0_length_Return
1690_1_length_InvokeMethod(2393_0_length_Return(x0)) → Cond_1690_1_length_InvokeMethod(>(x0, 0), 2393_0_length_Return(x0))
Cond_1690_1_length_InvokeMethod(TRUE, 2393_0_length_Return(x0)) → 2393_0_length_Return(+(1, x0))
1690_1_length_InvokeMethod(2400_0_length_Return(x0)) → Cond_1690_1_length_InvokeMethod1(>(x0, 0), 2400_0_length_Return(x0))
Cond_1690_1_length_InvokeMethod1(TRUE, 2400_0_length_Return(x0)) → 2393_0_length_Return(+(1, x0))
1690_1_length_InvokeMethod(2408_0_length_Return(x0)) → Cond_1690_1_length_InvokeMethod2(>(x0, 0), 2408_0_length_Return(x0))
Cond_1690_1_length_InvokeMethod2(TRUE, 2408_0_length_Return(x0)) → 2393_0_length_Return(+(1, x0))
1690_1_length_InvokeMethod(1732_0_length_Return) → 2393_0_length_Return(2)
1690_1_length_InvokeMethod(1737_0_length_Return) → 2393_0_length_Return(2)
1690_1_length_InvokeMethod(1741_0_length_Return) → 2393_0_length_Return(2)
1697_1_length_InvokeMethod(2393_0_length_Return(x0)) → Cond_1697_1_length_InvokeMethod(>(x0, 0), 2393_0_length_Return(x0))
Cond_1697_1_length_InvokeMethod(TRUE, 2393_0_length_Return(x0)) → 2400_0_length_Return(+(1, x0))
1697_1_length_InvokeMethod(2400_0_length_Return(x0)) → Cond_1697_1_length_InvokeMethod1(>(x0, 0), 2400_0_length_Return(x0))
Cond_1697_1_length_InvokeMethod1(TRUE, 2400_0_length_Return(x0)) → 2400_0_length_Return(+(1, x0))
1697_1_length_InvokeMethod(2408_0_length_Return(x0)) → Cond_1697_1_length_InvokeMethod2(>(x0, 0), 2408_0_length_Return(x0))
Cond_1697_1_length_InvokeMethod2(TRUE, 2408_0_length_Return(x0)) → 2400_0_length_Return(+(1, x0))
1697_1_length_InvokeMethod(1732_0_length_Return) → 2400_0_length_Return(2)
1697_1_length_InvokeMethod(1737_0_length_Return) → 2400_0_length_Return(2)
1697_1_length_InvokeMethod(1741_0_length_Return) → 2400_0_length_Return(2)
1702_1_length_InvokeMethod(2393_0_length_Return(x0)) → Cond_1702_1_length_InvokeMethod(>(x0, 0), 2393_0_length_Return(x0))
Cond_1702_1_length_InvokeMethod(TRUE, 2393_0_length_Return(x0)) → 2408_0_length_Return(+(1, x0))
1702_1_length_InvokeMethod(2400_0_length_Return(x0)) → Cond_1702_1_length_InvokeMethod1(>(x0, 0), 2400_0_length_Return(x0))
Cond_1702_1_length_InvokeMethod1(TRUE, 2400_0_length_Return(x0)) → 2408_0_length_Return(+(1, x0))
1702_1_length_InvokeMethod(2408_0_length_Return(x0)) → Cond_1702_1_length_InvokeMethod2(>(x0, 0), 2408_0_length_Return(x0))
Cond_1702_1_length_InvokeMethod2(TRUE, 2408_0_length_Return(x0)) → 2408_0_length_Return(+(1, x0))
1702_1_length_InvokeMethod(1732_0_length_Return) → 2408_0_length_Return(2)
1702_1_length_InvokeMethod(1737_0_length_Return) → 2408_0_length_Return(2)
1702_1_length_InvokeMethod(1741_0_length_Return) → 2408_0_length_Return(2)
4359_1_test_InvokeMethod(1815_0_test_Return, -1) → 4428_0_test_Return
4359_1_test_InvokeMethod(4428_0_test_Return, x1) → 4428_0_test_Return
4266_0_bubble_NULL(NULL) → 4271_0_bubble_Return
4266_0_bubble_NULL(java.lang.Object(List(x0))) → 4330_0_bubble_NONNULL(java.lang.Object(List(x0)))
4266_0_bubble_NULL(java.lang.Object(List(EOC))) → 4330_0_bubble_NONNULL(java.lang.Object(List(EOC)))
4330_0_bubble_NONNULL(java.lang.Object(List(x0))) → 4345_0_bubble_Return(java.lang.Object(List(x0)))
4330_0_bubble_NONNULL(java.lang.Object(List(x0))) → 4548_1_bubble_InvokeMethod(4266_0_bubble_NULL(java.lang.Object(List(EOC))))
4548_1_bubble_InvokeMethod(4345_0_bubble_Return(java.lang.Object(List(EOC)))) → 4556_0_bubble_Return
4548_1_bubble_InvokeMethod(4556_0_bubble_Return) → 4577_0_bubble_Return
4548_1_bubble_InvokeMethod(4577_0_bubble_Return) → 4577_0_bubble_Return
Combined rules. Obtained 13 conditional rules for P and 37 conditional rules for R.
P rules:
1915_1_test_InvokeMethod(1635_0_length_Return, x2, NULL) → 4359_1_test_InvokeMethod(1915_1_test_InvokeMethod(1915_0_length_Load(x3), -(x2, 1), x3), -(x2, 1)) | &&(>(x2, 0), <(x2, 4))
1915_1_test_InvokeMethod(2393_0_length_Return(x0), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, x0)
1915_1_test_InvokeMethod(2400_0_length_Return(x0), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, x0)
1915_1_test_InvokeMethod(2408_0_length_Return(x0), x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, x0)
1915_1_test_InvokeMethod(1741_0_length_Return, x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, 1)
1915_1_test_InvokeMethod(1732_0_length_Return, x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, 1)
1915_1_test_InvokeMethod(1737_0_length_Return, x2, java.lang.Object(List(EOC))) → 4320_0_test_GE(x2, 0, 1)
4320_0_test_GE(x1, x3, x2) → 4359_1_test_InvokeMethod(1915_1_test_InvokeMethod(1915_0_length_Load(x4), -(x1, 1), x4), -(x1, 1)) | &&(&&(>=(x3, x2), >(x1, 0)), <(x1, 4))
4320_0_test_GE(x1, x3, x2) → 4356_1_test_InvokeMethod(4356_0_bubble_Load(x4), x1, x2, x3, x4) | &&(<(x3, x2), <(x1, 3))
4356_1_test_InvokeMethod(4271_0_bubble_Return, x1, x2, x3, NULL) → 4320_0_test_GE(x1, +(x3, 1), x2)
4356_1_test_InvokeMethod(4345_0_bubble_Return(java.lang.Object(List(x0))), x2, x3, x4, java.lang.Object(List(x0))) → 4320_0_test_GE(x2, +(x4, 1), x3)
4356_1_test_InvokeMethod(4556_0_bubble_Return, x1, x2, x3, x4) → 4320_0_test_GE(x1, +(x3, 1), x2)
4356_1_test_InvokeMethod(4577_0_bubble_Return, x1, x2, x3, x4) → 4320_0_test_GE(x1, +(x3, 1), x2)
R rules:
1915_0_length_Load(x0) → 1627_0_length_NONNULL
4356_0_bubble_Load(x0) → 4266_0_bubble_NULL(x0)
1627_0_length_NONNULL → 1635_0_length_Return
1627_0_length_NONNULL → 1690_1_length_InvokeMethod(1627_0_length_NONNULL)
1627_0_length_NONNULL → 1697_1_length_InvokeMethod(1627_0_length_NONNULL)
1627_0_length_NONNULL → 1702_1_length_InvokeMethod(1627_0_length_NONNULL)
1690_1_length_InvokeMethod(1635_0_length_Return) → 1732_0_length_Return
1697_1_length_InvokeMethod(1635_0_length_Return) → 1737_0_length_Return
1702_1_length_InvokeMethod(1635_0_length_Return) → 1741_0_length_Return
1690_1_length_InvokeMethod(2393_0_length_Return(x0)) → 2393_0_length_Return(+(1, x0)) | >(x0, 0)
1690_1_length_InvokeMethod(2400_0_length_Return(x0)) → 2393_0_length_Return(+(1, x0)) | >(x0, 0)
1690_1_length_InvokeMethod(2408_0_length_Return(x0)) → 2393_0_length_Return(+(1, x0)) | >(x0, 0)
1690_1_length_InvokeMethod(1732_0_length_Return) → 2393_0_length_Return(2)
1690_1_length_InvokeMethod(1737_0_length_Return) → 2393_0_length_Return(2)
1690_1_length_InvokeMethod(1741_0_length_Return) → 2393_0_length_Return(2)
1697_1_length_InvokeMethod(2393_0_length_Return(x0)) → 2400_0_length_Return(+(1, x0)) | >(x0, 0)
1697_1_length_InvokeMethod(2400_0_length_Return(x0)) → 2400_0_length_Return(+(1, x0)) | >(x0, 0)
1697_1_length_InvokeMethod(2408_0_length_Return(x0)) → 2400_0_length_Return(+(1, x0)) | >(x0, 0)
1697_1_length_InvokeMethod(1732_0_length_Return) → 2400_0_length_Return(2)
1697_1_length_InvokeMethod(1737_0_length_Return) → 2400_0_length_Return(2)
1697_1_length_InvokeMethod(1741_0_length_Return) → 2400_0_length_Return(2)
1702_1_length_InvokeMethod(2393_0_length_Return(x0)) → 2408_0_length_Return(+(1, x0)) | >(x0, 0)
1702_1_length_InvokeMethod(2400_0_length_Return(x0)) → 2408_0_length_Return(+(1, x0)) | >(x0, 0)
1702_1_length_InvokeMethod(2408_0_length_Return(x0)) → 2408_0_length_Return(+(1, x0)) | >(x0, 0)
1702_1_length_InvokeMethod(1732_0_length_Return) → 2408_0_length_Return(2)
1702_1_length_InvokeMethod(1737_0_length_Return) → 2408_0_length_Return(2)
1702_1_length_InvokeMethod(1741_0_length_Return) → 2408_0_length_Return(2)
4359_1_test_InvokeMethod(1815_0_test_Return, -1) → 4428_0_test_Return
4359_1_test_InvokeMethod(4428_0_test_Return, x1) → 4428_0_test_Return
4266_0_bubble_NULL(NULL) → 4271_0_bubble_Return
4266_0_bubble_NULL(java.lang.Object(List(x0))) → 4330_0_bubble_NONNULL(java.lang.Object(List(x0)))
4266_0_bubble_NULL(java.lang.Object(List(EOC))) → 4330_0_bubble_NONNULL(java.lang.Object(List(EOC)))
4330_0_bubble_NONNULL(java.lang.Object(List(x0))) → 4345_0_bubble_Return(java.lang.Object(List(x0)))
4330_0_bubble_NONNULL(java.lang.Object(List(x0))) → 4548_1_bubble_InvokeMethod(4266_0_bubble_NULL(java.lang.Object(List(EOC))))
4548_1_bubble_InvokeMethod(4345_0_bubble_Return(java.lang.Object(List(EOC)))) → 4556_0_bubble_Return
4548_1_bubble_InvokeMethod(4556_0_bubble_Return) → 4577_0_bubble_Return
4548_1_bubble_InvokeMethod(4577_0_bubble_Return) → 4577_0_bubble_Return
Performed bisimulation on rules. Used the following equivalence classes: {[2393_0_length_Return_1, 2400_0_length_Return_1, 2408_0_length_Return_1]=2393_0_length_Return_1, [1690_1_length_InvokeMethod_1, 1697_1_length_InvokeMethod_1, 1702_1_length_InvokeMethod_1]=1690_1_length_InvokeMethod_1, [1635_0_length_Return, 1732_0_length_Return, 1737_0_length_Return, 1741_0_length_Return, 1815_0_test_Return, 4428_0_test_Return, 4271_0_bubble_Return, EOC, 4556_0_bubble_Return, 4577_0_bubble_Return]=1635_0_length_Return, [Cond_1690_1_length_InvokeMethod_2, Cond_1690_1_length_InvokeMethod1_2, Cond_1690_1_length_InvokeMethod2_2, Cond_1697_1_length_InvokeMethod_2, Cond_1697_1_length_InvokeMethod1_2, Cond_1697_1_length_InvokeMethod2_2, Cond_1702_1_length_InvokeMethod_2, Cond_1702_1_length_InvokeMethod1_2, Cond_1702_1_length_InvokeMethod2_2]=Cond_1690_1_length_InvokeMethod_2}
Finished conversion. Obtained 11 rules for P and 17 rules for R. System has predefined symbols.
P rules:
1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2, NULL) → COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2, 0), <(x2, 4)), 1635_0_length_Return, x2, NULL, x3)
COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, x2, NULL, x3) → 1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3), -(x2, 1), x3)
1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0), x2, java.lang.Object(List(1635_0_length_Return))) → 4320_0_TEST_GE(x2, 0, x0)
1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2, java.lang.Object(List(1635_0_length_Return))) → 4320_0_TEST_GE(x2, 0, 1)
4320_0_TEST_GE(x1, x3, x2) → COND_4320_0_TEST_GE(&&(&&(>=(x3, x2), >(x1, 0)), <(x1, 4)), x1, x3, x2, x4)
COND_4320_0_TEST_GE(TRUE, x1, x3, x2, x4) → 1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4), -(x1, 1), x4)
4320_0_TEST_GE(x1, x3, x2) → COND_4320_0_TEST_GE1(&&(<(x3, x2), <(x1, 3)), x1, x3, x2, x4)
COND_4320_0_TEST_GE1(TRUE, x1, x3, x2, x4) → 4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4), x1, x2, x3, x4)
4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1, x2, x3, NULL) → 4320_0_TEST_GE(x1, +(x3, 1), x2)
4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0))), x2, x3, x4, java.lang.Object(List(x0))) → 4320_0_TEST_GE(x2, +(x4, 1), x3)
4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1, x2, x3, x4) → 4320_0_TEST_GE(x1, +(x3, 1), x2)
R rules:
1915_0_length_Load(x0) → 1627_0_length_NONNULL
4356_0_bubble_Load(x0) → 4266_0_bubble_NULL(x0)
1627_0_length_NONNULL → 1635_0_length_Return
1627_0_length_NONNULL → 1690_1_length_InvokeMethod(1627_0_length_NONNULL)
1690_1_length_InvokeMethod(1635_0_length_Return) → 1635_0_length_Return
1690_1_length_InvokeMethod(2393_0_length_Return(x0)) → Cond_1690_1_length_InvokeMethod(>(x0, 0), 2393_0_length_Return(x0))
Cond_1690_1_length_InvokeMethod(TRUE, 2393_0_length_Return(x0)) → 2393_0_length_Return(+(1, x0))
1690_1_length_InvokeMethod(1635_0_length_Return) → 2393_0_length_Return(2)
4359_1_test_InvokeMethod(1635_0_length_Return, -1) → 1635_0_length_Return
4359_1_test_InvokeMethod(1635_0_length_Return, x1) → 1635_0_length_Return
4266_0_bubble_NULL(NULL) → 1635_0_length_Return
4266_0_bubble_NULL(java.lang.Object(List(x0))) → 4330_0_bubble_NONNULL(java.lang.Object(List(x0)))
4266_0_bubble_NULL(java.lang.Object(List(1635_0_length_Return))) → 4330_0_bubble_NONNULL(java.lang.Object(List(1635_0_length_Return)))
4330_0_bubble_NONNULL(java.lang.Object(List(x0))) → 4345_0_bubble_Return(java.lang.Object(List(x0)))
4330_0_bubble_NONNULL(java.lang.Object(List(x0))) → 4548_1_bubble_InvokeMethod(4266_0_bubble_NULL(java.lang.Object(List(1635_0_length_Return))))
4548_1_bubble_InvokeMethod(4345_0_bubble_Return(java.lang.Object(List(1635_0_length_Return)))) → 1635_0_length_Return
4548_1_bubble_InvokeMethod(1635_0_length_Return) → 1635_0_length_Return
!= | ~ | 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 (x2[0] > 0 && x2[0] < 4 ∧x2[0] →* x2[1]∧x3[0] →* x3[1])
(1) -> (0), if (1915_0_length_Load(x3[1]) →* 1635_0_length_Return∧x2[1] - 1 →* x2[0]∧x3[1] →* NULL)
(1) -> (2), if (1915_0_length_Load(x3[1]) →* 2393_0_length_Return(x0[2])∧x2[1] - 1 →* x2[2]∧x3[1] →* java.lang.Object(List(1635_0_length_Return)))
(1) -> (3), if (1915_0_length_Load(x3[1]) →* 1635_0_length_Return∧x2[1] - 1 →* x2[3]∧x3[1] →* java.lang.Object(List(1635_0_length_Return)))
(2) -> (4), if (x2[2] →* x1[4]∧0 →* x3[4]∧x0[2] →* x2[4])
(2) -> (6), if (x2[2] →* x1[6]∧0 →* x3[6]∧x0[2] →* x2[6])
(3) -> (4), if (x2[3] →* x1[4]∧0 →* x3[4]∧1 →* x2[4])
(3) -> (6), if (x2[3] →* x1[6]∧0 →* x3[6]∧1 →* x2[6])
(4) -> (5), if (x3[4] >= x2[4] && x1[4] > 0 && x1[4] < 4 ∧x1[4] →* x1[5]∧x3[4] →* x3[5]∧x2[4] →* x2[5]∧x4[4] →* x4[5])
(5) -> (0), if (1915_0_length_Load(x4[5]) →* 1635_0_length_Return∧x1[5] - 1 →* x2[0]∧x4[5] →* NULL)
(5) -> (2), if (1915_0_length_Load(x4[5]) →* 2393_0_length_Return(x0[2])∧x1[5] - 1 →* x2[2]∧x4[5] →* java.lang.Object(List(1635_0_length_Return)))
(5) -> (3), if (1915_0_length_Load(x4[5]) →* 1635_0_length_Return∧x1[5] - 1 →* x2[3]∧x4[5] →* java.lang.Object(List(1635_0_length_Return)))
(6) -> (7), if (x3[6] < x2[6] && x1[6] < 3 ∧x1[6] →* x1[7]∧x3[6] →* x3[7]∧x2[6] →* x2[7]∧x4[6] →* x4[7])
(7) -> (8), if (4356_0_bubble_Load(x4[7]) →* 1635_0_length_Return∧x1[7] →* x1[8]∧x2[7] →* x2[8]∧x3[7] →* x3[8]∧x4[7] →* NULL)
(7) -> (9), if (4356_0_bubble_Load(x4[7]) →* 4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧x1[7] →* x2[9]∧x2[7] →* x3[9]∧x3[7] →* x4[9]∧x4[7] →* java.lang.Object(List(x0[9])))
(7) -> (10), if (4356_0_bubble_Load(x4[7]) →* 1635_0_length_Return∧x1[7] →* x1[10]∧x2[7] →* x2[10]∧x3[7] →* x3[10]∧x4[7] →* x4[10])
(8) -> (4), if (x1[8] →* x1[4]∧x3[8] + 1 →* x3[4]∧x2[8] →* x2[4])
(8) -> (6), if (x1[8] →* x1[6]∧x3[8] + 1 →* x3[6]∧x2[8] →* x2[6])
(9) -> (4), if (x2[9] →* x1[4]∧x4[9] + 1 →* x3[4]∧x3[9] →* x2[4])
(9) -> (6), if (x2[9] →* x1[6]∧x4[9] + 1 →* x3[6]∧x3[9] →* x2[6])
(10) -> (4), if (x1[10] →* x1[4]∧x3[10] + 1 →* x3[4]∧x2[10] →* x2[4])
(10) -> (6), if (x1[10] →* x1[6]∧x3[10] + 1 →* x3[6]∧x2[10] →* x2[6])
(1) (&&(>(x2[0], 0), <(x2[0], 4))=TRUE∧x2[0]=x2[1]∧x3[0]=x3[1]∧1915_0_length_Load(x3[1])=1635_0_length_Return∧-(x2[1], 1)=x2[0]1∧x3[1]=NULL ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[0]1, NULL)≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[0]1, NULL)≥COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0]1, 0), <(x2[0]1, 4)), 1635_0_length_Return, x2[0]1, NULL, x3[0]1)∧(UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0]1, 0), <(x2[0]1, 4)), 1635_0_length_Return, x2[0]1, NULL, x3[0]1)), ≥))
(2) (NULL=x0∧1915_0_length_Load(x0)=1635_0_length_Return∧>(x2[0], 0)=TRUE∧<(x2[0], 4)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), NULL)≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), NULL)≥COND_1915_1_TEST_INVOKEMETHOD(&&(>(-(x2[0], 1), 0), <(-(x2[0], 1), 4)), 1635_0_length_Return, -(x2[0], 1), NULL, x3[0]1)∧(UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0]1, 0), <(x2[0]1, 4)), 1635_0_length_Return, x2[0]1, NULL, x3[0]1)), ≥))
(3) (1627_0_length_NONNULL=1635_0_length_Return∧NULL=x1∧>(x2[0], 0)=TRUE∧<(x2[0], 4)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), NULL)≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), NULL)≥COND_1915_1_TEST_INVOKEMETHOD(&&(>(-(x2[0], 1), 0), <(-(x2[0], 1), 4)), 1635_0_length_Return, -(x2[0], 1), NULL, x3[0]1)∧(UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0]1, 0), <(x2[0]1, 4)), 1635_0_length_Return, x2[0]1, NULL, x3[0]1)), ≥))
(4) (1627_0_length_NONNULL=1635_0_length_Return∧>(x2[0], 0)=TRUE∧<(x2[0], 4)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), NULL)≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), NULL)≥COND_1915_1_TEST_INVOKEMETHOD(&&(>(-(x2[0], 1), 0), <(-(x2[0], 1), 4)), 1635_0_length_Return, -(x2[0], 1), NULL, x3[0]1)∧(UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0]1, 0), <(x2[0]1, 4)), 1635_0_length_Return, x2[0]1, NULL, x3[0]1)), ≥))
(5) (x2[0] + [-1] ≥ 0∧[3] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0]1, 0), <(x2[0]1, 4)), 1635_0_length_Return, x2[0]1, NULL, x3[0]1)), ≥)∧[(-2)bni_37 + (-1)Bound*bni_37] + [bni_37]x2[0] ≥ 0∧[(-1)bso_38] ≥ 0)
(6) (x2[0] + [-1] ≥ 0∧[3] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0]1, 0), <(x2[0]1, 4)), 1635_0_length_Return, x2[0]1, NULL, x3[0]1)), ≥)∧[(-2)bni_37 + (-1)Bound*bni_37] + [bni_37]x2[0] ≥ 0∧[(-1)bso_38] ≥ 0)
(7) (x2[0] + [-1] ≥ 0∧[3] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0]1, 0), <(x2[0]1, 4)), 1635_0_length_Return, x2[0]1, NULL, x3[0]1)), ≥)∧[(-2)bni_37 + (-1)Bound*bni_37] + [bni_37]x2[0] ≥ 0∧[(-1)bso_38] ≥ 0)
(8) (x2[0] ≥ 0∧[2] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0]1, 0), <(x2[0]1, 4)), 1635_0_length_Return, x2[0]1, NULL, x3[0]1)), ≥)∧[(-1)bni_37 + (-1)Bound*bni_37] + [bni_37]x2[0] ≥ 0∧[(-1)bso_38] ≥ 0)
(9) (&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4))=TRUE∧x1[4]=x1[5]∧x3[4]=x3[5]∧x2[4]=x2[5]∧x4[4]=x4[5]∧1915_0_length_Load(x4[5])=1635_0_length_Return∧-(x1[5], 1)=x2[0]∧x4[5]=NULL ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[0], NULL)≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[0], NULL)≥COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])∧(UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])), ≥))
(10) (NULL=x2∧1915_0_length_Load(x2)=1635_0_length_Return∧<(x1[4], 4)=TRUE∧>=(x3[4], x2[4])=TRUE∧>(x1[4], 0)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), NULL)≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), NULL)≥COND_1915_1_TEST_INVOKEMETHOD(&&(>(-(x1[4], 1), 0), <(-(x1[4], 1), 4)), 1635_0_length_Return, -(x1[4], 1), NULL, x3[0])∧(UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])), ≥))
(11) (1627_0_length_NONNULL=1635_0_length_Return∧NULL=x3∧<(x1[4], 4)=TRUE∧>=(x3[4], x2[4])=TRUE∧>(x1[4], 0)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), NULL)≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), NULL)≥COND_1915_1_TEST_INVOKEMETHOD(&&(>(-(x1[4], 1), 0), <(-(x1[4], 1), 4)), 1635_0_length_Return, -(x1[4], 1), NULL, x3[0])∧(UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])), ≥))
(12) (1627_0_length_NONNULL=1635_0_length_Return∧<(x1[4], 4)=TRUE∧>=(x3[4], x2[4])=TRUE∧>(x1[4], 0)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), NULL)≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), NULL)≥COND_1915_1_TEST_INVOKEMETHOD(&&(>(-(x1[4], 1), 0), <(-(x1[4], 1), 4)), 1635_0_length_Return, -(x1[4], 1), NULL, x3[0])∧(UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])), ≥))
(13) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])), ≥)∧[(-2)bni_37 + (-1)Bound*bni_37] + [bni_37]x1[4] ≥ 0∧[(-1)bso_38] ≥ 0)
(14) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])), ≥)∧[(-2)bni_37 + (-1)Bound*bni_37] + [bni_37]x1[4] ≥ 0∧[(-1)bso_38] ≥ 0)
(15) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])), ≥)∧[(-2)bni_37 + (-1)Bound*bni_37] + [bni_37]x1[4] ≥ 0∧[(-1)bso_38] ≥ 0)
(16) ([2] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] ≥ 0 ⇒ (UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])), ≥)∧[(-1)bni_37 + (-1)Bound*bni_37] + [bni_37]x1[4] ≥ 0∧[(-1)bso_38] ≥ 0)
(17) ([2] + [-1]x1[4] ≥ 0∧x1[4] ≥ 0 ⇒ (UIncreasing(COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])), ≥)∧[(-1)bni_37 + (-1)Bound*bni_37] + [bni_37]x1[4] ≥ 0∧[(-1)bso_38] ≥ 0)
(18) (1915_0_length_Load(x3[1])=1635_0_length_Return∧-(x2[1], 1)=x2[0]∧x3[1]=NULL∧&&(>(x2[0], 0), <(x2[0], 4))=TRUE∧x2[0]=x2[1]1∧x3[0]=x3[1]1 ⇒ COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, x2[1]1, NULL, x3[1]1)≥NonInfC∧COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, x2[1]1, NULL, x3[1]1)≥1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]1), -(x2[1]1, 1), x3[1]1)∧(UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]1), -(x2[1]1, 1), x3[1]1)), ≥))
(19) (NULL=x4∧1915_0_length_Load(x4)=1635_0_length_Return∧>(-(x2[1], 1), 0)=TRUE∧<(-(x2[1], 1), 4)=TRUE ⇒ COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x2[1], 1), NULL, x3[0])≥NonInfC∧COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x2[1], 1), NULL, x3[0])≥1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[0]), -(-(x2[1], 1), 1), x3[0])∧(UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]1), -(x2[1]1, 1), x3[1]1)), ≥))
(20) (1627_0_length_NONNULL=1635_0_length_Return∧NULL=x5∧>(-(x2[1], 1), 0)=TRUE∧<(-(x2[1], 1), 4)=TRUE ⇒ COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x2[1], 1), NULL, x3[0])≥NonInfC∧COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x2[1], 1), NULL, x3[0])≥1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[0]), -(-(x2[1], 1), 1), x3[0])∧(UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]1), -(x2[1]1, 1), x3[1]1)), ≥))
(21) (1627_0_length_NONNULL=1635_0_length_Return∧>(-(x2[1], 1), 0)=TRUE∧<(-(x2[1], 1), 4)=TRUE ⇒ COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x2[1], 1), NULL, x3[0])≥NonInfC∧COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x2[1], 1), NULL, x3[0])≥1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[0]), -(-(x2[1], 1), 1), x3[0])∧(UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]1), -(x2[1]1, 1), x3[1]1)), ≥))
(22) (x2[1] + [-2] ≥ 0∧[4] + [-1]x2[1] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]1), -(x2[1]1, 1), x3[1]1)), ≥)∧[(-2)bni_39 + (-1)Bound*bni_39] + [bni_39]x2[1] ≥ 0∧[1 + (-1)bso_40] ≥ 0)
(23) (x2[1] + [-2] ≥ 0∧[4] + [-1]x2[1] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]1), -(x2[1]1, 1), x3[1]1)), ≥)∧[(-2)bni_39 + (-1)Bound*bni_39] + [bni_39]x2[1] ≥ 0∧[1 + (-1)bso_40] ≥ 0)
(24) (x2[1] + [-2] ≥ 0∧[4] + [-1]x2[1] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]1), -(x2[1]1, 1), x3[1]1)), ≥)∧[(-2)bni_39 + (-1)Bound*bni_39] + [bni_39]x2[1] ≥ 0∧[1 + (-1)bso_40] ≥ 0)
(25) (x2[1] ≥ 0∧[2] + [-1]x2[1] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]1), -(x2[1]1, 1), x3[1]1)), ≥)∧[(-1)Bound*bni_39] + [bni_39]x2[1] ≥ 0∧[1 + (-1)bso_40] ≥ 0)
(26) (1915_0_length_Load(x4[5])=1635_0_length_Return∧-(x1[5], 1)=x2[0]∧x4[5]=NULL∧&&(>(x2[0], 0), <(x2[0], 4))=TRUE∧x2[0]=x2[1]∧x3[0]=x3[1] ⇒ COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, x2[1], NULL, x3[1])≥NonInfC∧COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, x2[1], NULL, x3[1])≥1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]), -(x2[1], 1), x3[1])∧(UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]), -(x2[1], 1), x3[1])), ≥))
(27) (NULL=x6∧1915_0_length_Load(x6)=1635_0_length_Return∧>(-(x1[5], 1), 0)=TRUE∧<(-(x1[5], 1), 4)=TRUE ⇒ COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x1[5], 1), NULL, x3[0])≥NonInfC∧COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x1[5], 1), NULL, x3[0])≥1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[0]), -(-(x1[5], 1), 1), x3[0])∧(UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]), -(x2[1], 1), x3[1])), ≥))
(28) (1627_0_length_NONNULL=1635_0_length_Return∧NULL=x7∧>(-(x1[5], 1), 0)=TRUE∧<(-(x1[5], 1), 4)=TRUE ⇒ COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x1[5], 1), NULL, x3[0])≥NonInfC∧COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x1[5], 1), NULL, x3[0])≥1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[0]), -(-(x1[5], 1), 1), x3[0])∧(UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]), -(x2[1], 1), x3[1])), ≥))
(29) (1627_0_length_NONNULL=1635_0_length_Return∧>(-(x1[5], 1), 0)=TRUE∧<(-(x1[5], 1), 4)=TRUE ⇒ COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x1[5], 1), NULL, x3[0])≥NonInfC∧COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, -(x1[5], 1), NULL, x3[0])≥1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[0]), -(-(x1[5], 1), 1), x3[0])∧(UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]), -(x2[1], 1), x3[1])), ≥))
(30) (x1[5] + [-2] ≥ 0∧[4] + [-1]x1[5] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]), -(x2[1], 1), x3[1])), ≥)∧[(-2)bni_39 + (-1)Bound*bni_39] + [bni_39]x1[5] ≥ 0∧[1 + (-1)bso_40] ≥ 0)
(31) (x1[5] + [-2] ≥ 0∧[4] + [-1]x1[5] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]), -(x2[1], 1), x3[1])), ≥)∧[(-2)bni_39 + (-1)Bound*bni_39] + [bni_39]x1[5] ≥ 0∧[1 + (-1)bso_40] ≥ 0)
(32) (x1[5] + [-2] ≥ 0∧[4] + [-1]x1[5] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]), -(x2[1], 1), x3[1])), ≥)∧[(-2)bni_39 + (-1)Bound*bni_39] + [bni_39]x1[5] ≥ 0∧[1 + (-1)bso_40] ≥ 0)
(33) (x1[5] ≥ 0∧[2] + [-1]x1[5] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]), -(x2[1], 1), x3[1])), ≥)∧[(-1)Bound*bni_39] + [bni_39]x1[5] ≥ 0∧[1 + (-1)bso_40] ≥ 0)
(34) (&&(>(x2[0], 0), <(x2[0], 4))=TRUE∧x2[0]=x2[1]∧x3[0]=x3[1]∧1915_0_length_Load(x3[1])=2393_0_length_Return(x0[2])∧-(x2[1], 1)=x2[2]∧x3[1]=java.lang.Object(List(1635_0_length_Return)) ⇒ 1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), x2[2], java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), x2[2], java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(x2[2], 0, x0[2])∧(UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥))
(35) (java.lang.Object(List(1635_0_length_Return))=x8∧1915_0_length_Load(x8)=2393_0_length_Return(x0[2])∧>(x2[0], 0)=TRUE∧<(x2[0], 4)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x2[0], 1), 0, x0[2])∧(UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥))
(36) (1627_0_length_NONNULL=2393_0_length_Return(x0[2])∧java.lang.Object(List(1635_0_length_Return))=x9∧>(x2[0], 0)=TRUE∧<(x2[0], 4)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x2[0], 1), 0, x0[2])∧(UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥))
(37) (1627_0_length_NONNULL=2393_0_length_Return(x0[2])∧>(x2[0], 0)=TRUE∧<(x2[0], 4)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x2[0], 1), 0, x0[2])∧(UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥))
(38) (x2[0] + [-1] ≥ 0∧[3] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥)∧[(-2)bni_41 + (-1)Bound*bni_41] + [bni_41]x2[0] ≥ 0∧[(-1)bso_42] ≥ 0)
(39) (x2[0] + [-1] ≥ 0∧[3] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥)∧[(-2)bni_41 + (-1)Bound*bni_41] + [bni_41]x2[0] ≥ 0∧[(-1)bso_42] ≥ 0)
(40) (x2[0] + [-1] ≥ 0∧[3] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥)∧[(-2)bni_41 + (-1)Bound*bni_41] + [bni_41]x2[0] ≥ 0∧[(-1)bso_42] ≥ 0)
(41) (x2[0] + [-1] ≥ 0∧[3] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥)∧[(-2)bni_41 + (-1)Bound*bni_41] + [bni_41]x2[0] ≥ 0∧0 = 0∧[(-1)bso_42] ≥ 0)
(42) (x2[0] ≥ 0∧[2] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥)∧[(-1)bni_41 + (-1)Bound*bni_41] + [bni_41]x2[0] ≥ 0∧0 = 0∧[(-1)bso_42] ≥ 0)
(43) (&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4))=TRUE∧x1[4]=x1[5]∧x3[4]=x3[5]∧x2[4]=x2[5]∧x4[4]=x4[5]∧1915_0_length_Load(x4[5])=2393_0_length_Return(x0[2])∧-(x1[5], 1)=x2[2]∧x4[5]=java.lang.Object(List(1635_0_length_Return)) ⇒ 1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), x2[2], java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), x2[2], java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(x2[2], 0, x0[2])∧(UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥))
(44) (java.lang.Object(List(1635_0_length_Return))=x10∧1915_0_length_Load(x10)=2393_0_length_Return(x0[2])∧<(x1[4], 4)=TRUE∧>=(x3[4], x2[4])=TRUE∧>(x1[4], 0)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x1[4], 1), 0, x0[2])∧(UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥))
(45) (1627_0_length_NONNULL=2393_0_length_Return(x0[2])∧java.lang.Object(List(1635_0_length_Return))=x11∧<(x1[4], 4)=TRUE∧>=(x3[4], x2[4])=TRUE∧>(x1[4], 0)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x1[4], 1), 0, x0[2])∧(UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥))
(46) (1627_0_length_NONNULL=2393_0_length_Return(x0[2])∧<(x1[4], 4)=TRUE∧>=(x3[4], x2[4])=TRUE∧>(x1[4], 0)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x1[4], 1), 0, x0[2])∧(UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥))
(47) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥)∧[(-2)bni_41 + (-1)Bound*bni_41] + [bni_41]x1[4] ≥ 0∧[(-1)bso_42] ≥ 0)
(48) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥)∧[(-2)bni_41 + (-1)Bound*bni_41] + [bni_41]x1[4] ≥ 0∧[(-1)bso_42] ≥ 0)
(49) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥)∧[(-2)bni_41 + (-1)Bound*bni_41] + [bni_41]x1[4] ≥ 0∧[(-1)bso_42] ≥ 0)
(50) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥)∧[(-2)bni_41 + (-1)Bound*bni_41] + [bni_41]x1[4] ≥ 0∧0 = 0∧[(-1)bso_42] ≥ 0)
(51) ([2] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥)∧[(-1)bni_41 + (-1)Bound*bni_41] + [bni_41]x1[4] ≥ 0∧0 = 0∧[(-1)bso_42] ≥ 0)
(52) ([2] + [-1]x1[4] ≥ 0∧x1[4] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[2], 0, x0[2])), ≥)∧[(-1)bni_41 + (-1)Bound*bni_41] + [bni_41]x1[4] ≥ 0∧0 = 0∧[(-1)bso_42] ≥ 0)
(53) (&&(>(x2[0], 0), <(x2[0], 4))=TRUE∧x2[0]=x2[1]∧x3[0]=x3[1]∧1915_0_length_Load(x3[1])=1635_0_length_Return∧-(x2[1], 1)=x2[3]∧x3[1]=java.lang.Object(List(1635_0_length_Return)) ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[3], java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[3], java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(x2[3], 0, 1)∧(UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥))
(54) (java.lang.Object(List(1635_0_length_Return))=x12∧1915_0_length_Load(x12)=1635_0_length_Return∧>(x2[0], 0)=TRUE∧<(x2[0], 4)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x2[0], 1), 0, 1)∧(UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥))
(55) (1627_0_length_NONNULL=1635_0_length_Return∧java.lang.Object(List(1635_0_length_Return))=x13∧>(x2[0], 0)=TRUE∧<(x2[0], 4)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x2[0], 1), 0, 1)∧(UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥))
(56) (1627_0_length_NONNULL=1635_0_length_Return∧>(x2[0], 0)=TRUE∧<(x2[0], 4)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x2[0], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x2[0], 1), 0, 1)∧(UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥))
(57) (x2[0] + [-1] ≥ 0∧[3] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥)∧[(-2)bni_43 + (-1)Bound*bni_43] + [bni_43]x2[0] ≥ 0∧[(-1)bso_44] ≥ 0)
(58) (x2[0] + [-1] ≥ 0∧[3] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥)∧[(-2)bni_43 + (-1)Bound*bni_43] + [bni_43]x2[0] ≥ 0∧[(-1)bso_44] ≥ 0)
(59) (x2[0] + [-1] ≥ 0∧[3] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥)∧[(-2)bni_43 + (-1)Bound*bni_43] + [bni_43]x2[0] ≥ 0∧[(-1)bso_44] ≥ 0)
(60) (x2[0] ≥ 0∧[2] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥)∧[(-1)bni_43 + (-1)Bound*bni_43] + [bni_43]x2[0] ≥ 0∧[(-1)bso_44] ≥ 0)
(61) (&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4))=TRUE∧x1[4]=x1[5]∧x3[4]=x3[5]∧x2[4]=x2[5]∧x4[4]=x4[5]∧1915_0_length_Load(x4[5])=1635_0_length_Return∧-(x1[5], 1)=x2[3]∧x4[5]=java.lang.Object(List(1635_0_length_Return)) ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[3], java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[3], java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(x2[3], 0, 1)∧(UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥))
(62) (java.lang.Object(List(1635_0_length_Return))=x14∧1915_0_length_Load(x14)=1635_0_length_Return∧<(x1[4], 4)=TRUE∧>=(x3[4], x2[4])=TRUE∧>(x1[4], 0)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x1[4], 1), 0, 1)∧(UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥))
(63) (1627_0_length_NONNULL=1635_0_length_Return∧java.lang.Object(List(1635_0_length_Return))=x15∧<(x1[4], 4)=TRUE∧>=(x3[4], x2[4])=TRUE∧>(x1[4], 0)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x1[4], 1), 0, 1)∧(UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥))
(64) (1627_0_length_NONNULL=1635_0_length_Return∧<(x1[4], 4)=TRUE∧>=(x3[4], x2[4])=TRUE∧>(x1[4], 0)=TRUE ⇒ 1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥NonInfC∧1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, -(x1[4], 1), java.lang.Object(List(1635_0_length_Return)))≥4320_0_TEST_GE(-(x1[4], 1), 0, 1)∧(UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥))
(65) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥)∧[(-2)bni_43 + (-1)Bound*bni_43] + [bni_43]x1[4] ≥ 0∧[(-1)bso_44] ≥ 0)
(66) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥)∧[(-2)bni_43 + (-1)Bound*bni_43] + [bni_43]x1[4] ≥ 0∧[(-1)bso_44] ≥ 0)
(67) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥)∧[(-2)bni_43 + (-1)Bound*bni_43] + [bni_43]x1[4] ≥ 0∧[(-1)bso_44] ≥ 0)
(68) ([2] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥)∧[(-1)bni_43 + (-1)Bound*bni_43] + [bni_43]x1[4] ≥ 0∧[(-1)bso_44] ≥ 0)
(69) ([2] + [-1]x1[4] ≥ 0∧x1[4] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[3], 0, 1)), ≥)∧[(-1)bni_43 + (-1)Bound*bni_43] + [bni_43]x1[4] ≥ 0∧[(-1)bso_44] ≥ 0)
(70) (1915_0_length_Load(x3[1])=2393_0_length_Return(x0[2])∧-(x2[1], 1)=x2[2]∧x3[1]=java.lang.Object(List(1635_0_length_Return))∧x2[2]=x1[4]∧0=x3[4]∧x0[2]=x2[4] ⇒ 4320_0_TEST_GE(x1[4], x3[4], x2[4])≥NonInfC∧4320_0_TEST_GE(x1[4], x3[4], x2[4])≥COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(71) (java.lang.Object(List(1635_0_length_Return))=x16∧1915_0_length_Load(x16)=2393_0_length_Return(x0[2]) ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥COND_4320_0_TEST_GE(&&(&&(>=(0, x0[2]), >(-(x2[1], 1), 0)), <(-(x2[1], 1), 4)), -(x2[1], 1), 0, x0[2], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(72) (1627_0_length_NONNULL=2393_0_length_Return(x0[2])∧java.lang.Object(List(1635_0_length_Return))=x17 ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥COND_4320_0_TEST_GE(&&(&&(>=(0, x0[2]), >(-(x2[1], 1), 0)), <(-(x2[1], 1), 4)), -(x2[1], 1), 0, x0[2], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(73) (1627_0_length_NONNULL=2393_0_length_Return(x0[2]) ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥COND_4320_0_TEST_GE(&&(&&(>=(0, x0[2]), >(-(x2[1], 1), 0)), <(-(x2[1], 1), 4)), -(x2[1], 1), 0, x0[2], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(74) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x2[1] ≥ 0∧[(-1)bso_46] ≥ 0)
(75) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x2[1] ≥ 0∧[(-1)bso_46] ≥ 0)
(76) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x2[1] ≥ 0∧[(-1)bso_46] ≥ 0)
(77) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧0 = 0∧[bni_45] = 0∧[(-2)bni_45 + (-1)Bound*bni_45] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_46] ≥ 0)
(78) (1915_0_length_Load(x3[1])=1635_0_length_Return∧-(x2[1], 1)=x2[3]∧x3[1]=java.lang.Object(List(1635_0_length_Return))∧x2[3]=x1[4]∧0=x3[4]∧1=x2[4] ⇒ 4320_0_TEST_GE(x1[4], x3[4], x2[4])≥NonInfC∧4320_0_TEST_GE(x1[4], x3[4], x2[4])≥COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(79) (java.lang.Object(List(1635_0_length_Return))=x18∧1915_0_length_Load(x18)=1635_0_length_Return ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥COND_4320_0_TEST_GE(&&(&&(>=(0, 1), >(-(x2[1], 1), 0)), <(-(x2[1], 1), 4)), -(x2[1], 1), 0, 1, x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(80) (1627_0_length_NONNULL=1635_0_length_Return∧java.lang.Object(List(1635_0_length_Return))=x19 ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥COND_4320_0_TEST_GE(&&(&&(>=(0, 1), >(-(x2[1], 1), 0)), <(-(x2[1], 1), 4)), -(x2[1], 1), 0, 1, x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(81) (1627_0_length_NONNULL=1635_0_length_Return ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥COND_4320_0_TEST_GE(&&(&&(>=(0, 1), >(-(x2[1], 1), 0)), <(-(x2[1], 1), 4)), -(x2[1], 1), 0, 1, x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(82) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x2[1] ≥ 0∧[(-1)bso_46] ≥ 0)
(83) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x2[1] ≥ 0∧[(-1)bso_46] ≥ 0)
(84) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x2[1] ≥ 0∧[(-1)bso_46] ≥ 0)
(85) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[bni_45] = 0∧[(-2)bni_45 + (-1)Bound*bni_45] ≥ 0∧0 = 0∧[(-1)bso_46] ≥ 0)
(86) (4356_0_bubble_Load(x4[7])=1635_0_length_Return∧x1[7]=x1[8]∧x2[7]=x2[8]∧x3[7]=x3[8]∧x4[7]=NULL∧x1[8]=x1[4]∧+(x3[8], 1)=x3[4]∧x2[8]=x2[4] ⇒ 4320_0_TEST_GE(x1[4], x3[4], x2[4])≥NonInfC∧4320_0_TEST_GE(x1[4], x3[4], x2[4])≥COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(87) (NULL=x20∧4356_0_bubble_Load(x20)=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥COND_4320_0_TEST_GE(&&(&&(>=(+(x3[8], 1), x2[7]), >(x1[7], 0)), <(x1[7], 4)), x1[7], +(x3[8], 1), x2[7], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(88) (4266_0_bubble_NULL(x21)=1635_0_length_Return∧NULL=x21 ⇒ 4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥COND_4320_0_TEST_GE(&&(&&(>=(+(x3[8], 1), x2[7]), >(x1[7], 0)), <(x1[7], 4)), x1[7], +(x3[8], 1), x2[7], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(89) (4266_0_bubble_NULL(NULL)=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥COND_4320_0_TEST_GE(&&(&&(>=(+(x3[8], 1), x2[7]), >(x1[7], 0)), <(x1[7], 4)), x1[7], +(x3[8], 1), x2[7], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(90) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-1)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[7] ≥ 0∧[(-1)bso_46] ≥ 0)
(91) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-1)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[7] ≥ 0∧[(-1)bso_46] ≥ 0)
(92) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-1)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[7] ≥ 0∧[(-1)bso_46] ≥ 0)
(93) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧0 = 0∧0 = 0∧[bni_45] = 0∧[(-1)bni_45 + (-1)Bound*bni_45] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_46] ≥ 0)
(94) (4356_0_bubble_Load(x4[7])=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧x1[7]=x2[9]∧x2[7]=x3[9]∧x3[7]=x4[9]∧x4[7]=java.lang.Object(List(x0[9]))∧x2[9]=x1[4]∧+(x4[9], 1)=x3[4]∧x3[9]=x2[4] ⇒ 4320_0_TEST_GE(x1[4], x3[4], x2[4])≥NonInfC∧4320_0_TEST_GE(x1[4], x3[4], x2[4])≥COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(95) (java.lang.Object(List(x0[9]))=x22∧4356_0_bubble_Load(x22)=4345_0_bubble_Return(java.lang.Object(List(x0[9]))) ⇒ 4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥COND_4320_0_TEST_GE(&&(&&(>=(+(x4[9], 1), x2[7]), >(x1[7], 0)), <(x1[7], 4)), x1[7], +(x4[9], 1), x2[7], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(96) (4266_0_bubble_NULL(x23)=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧java.lang.Object(List(x0[9]))=x23 ⇒ 4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥COND_4320_0_TEST_GE(&&(&&(>=(+(x4[9], 1), x2[7]), >(x1[7], 0)), <(x1[7], 4)), x1[7], +(x4[9], 1), x2[7], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(97) (4266_0_bubble_NULL(java.lang.Object(List(x0[9])))=4345_0_bubble_Return(java.lang.Object(List(x0[9]))) ⇒ 4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥COND_4320_0_TEST_GE(&&(&&(>=(+(x4[9], 1), x2[7]), >(x1[7], 0)), <(x1[7], 4)), x1[7], +(x4[9], 1), x2[7], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(98) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-1)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[7] ≥ 0∧[(-1)bso_46] ≥ 0)
(99) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-1)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[7] ≥ 0∧[(-1)bso_46] ≥ 0)
(100) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-1)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[7] ≥ 0∧[(-1)bso_46] ≥ 0)
(101) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧0 = 0∧0 = 0∧[bni_45] = 0∧[(-1)bni_45 + (-1)Bound*bni_45] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_46] ≥ 0)
(102) (4356_0_bubble_Load(x4[7])=1635_0_length_Return∧x1[7]=x1[10]∧x2[7]=x2[10]∧x3[7]=x3[10]∧x4[7]=x4[10]∧x1[10]=x1[4]∧+(x3[10], 1)=x3[4]∧x2[10]=x2[4] ⇒ 4320_0_TEST_GE(x1[4], x3[4], x2[4])≥NonInfC∧4320_0_TEST_GE(x1[4], x3[4], x2[4])≥COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(103) (4356_0_bubble_Load(x4[7])=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥COND_4320_0_TEST_GE(&&(&&(>=(+(x3[10], 1), x2[7]), >(x1[7], 0)), <(x1[7], 4)), x1[7], +(x3[10], 1), x2[7], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(104) (4266_0_bubble_NULL(x24)=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥COND_4320_0_TEST_GE(&&(&&(>=(+(x3[10], 1), x2[7]), >(x1[7], 0)), <(x1[7], 4)), x1[7], +(x3[10], 1), x2[7], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(105) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-1)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[7] ≥ 0∧[(-1)bso_46] ≥ 0)
(106) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-1)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[7] ≥ 0∧[(-1)bso_46] ≥ 0)
(107) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-1)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[7] ≥ 0∧[(-1)bso_46] ≥ 0)
(108) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧0 = 0∧0 = 0∧[bni_45] = 0∧[(-1)bni_45 + (-1)Bound*bni_45] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_46] ≥ 0)
(109) (1915_0_length_Load(x4[5])=2393_0_length_Return(x0[2])∧-(x1[5], 1)=x2[2]∧x4[5]=java.lang.Object(List(1635_0_length_Return))∧x2[2]=x1[4]∧0=x3[4]∧x0[2]=x2[4] ⇒ 4320_0_TEST_GE(x1[4], x3[4], x2[4])≥NonInfC∧4320_0_TEST_GE(x1[4], x3[4], x2[4])≥COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(110) (java.lang.Object(List(1635_0_length_Return))=x25∧1915_0_length_Load(x25)=2393_0_length_Return(x0[2]) ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥COND_4320_0_TEST_GE(&&(&&(>=(0, x0[2]), >(-(x1[5], 1), 0)), <(-(x1[5], 1), 4)), -(x1[5], 1), 0, x0[2], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(111) (1627_0_length_NONNULL=2393_0_length_Return(x0[2])∧java.lang.Object(List(1635_0_length_Return))=x26 ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥COND_4320_0_TEST_GE(&&(&&(>=(0, x0[2]), >(-(x1[5], 1), 0)), <(-(x1[5], 1), 4)), -(x1[5], 1), 0, x0[2], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(112) (1627_0_length_NONNULL=2393_0_length_Return(x0[2]) ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥COND_4320_0_TEST_GE(&&(&&(>=(0, x0[2]), >(-(x1[5], 1), 0)), <(-(x1[5], 1), 4)), -(x1[5], 1), 0, x0[2], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(113) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[5] ≥ 0∧[(-1)bso_46] ≥ 0)
(114) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[5] ≥ 0∧[(-1)bso_46] ≥ 0)
(115) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[5] ≥ 0∧[(-1)bso_46] ≥ 0)
(116) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧0 = 0∧[bni_45] = 0∧[(-2)bni_45 + (-1)Bound*bni_45] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_46] ≥ 0)
(117) (1915_0_length_Load(x4[5])=1635_0_length_Return∧-(x1[5], 1)=x2[3]∧x4[5]=java.lang.Object(List(1635_0_length_Return))∧x2[3]=x1[4]∧0=x3[4]∧1=x2[4] ⇒ 4320_0_TEST_GE(x1[4], x3[4], x2[4])≥NonInfC∧4320_0_TEST_GE(x1[4], x3[4], x2[4])≥COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(118) (java.lang.Object(List(1635_0_length_Return))=x27∧1915_0_length_Load(x27)=1635_0_length_Return ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥COND_4320_0_TEST_GE(&&(&&(>=(0, 1), >(-(x1[5], 1), 0)), <(-(x1[5], 1), 4)), -(x1[5], 1), 0, 1, x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(119) (1627_0_length_NONNULL=1635_0_length_Return∧java.lang.Object(List(1635_0_length_Return))=x28 ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥COND_4320_0_TEST_GE(&&(&&(>=(0, 1), >(-(x1[5], 1), 0)), <(-(x1[5], 1), 4)), -(x1[5], 1), 0, 1, x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(120) (1627_0_length_NONNULL=1635_0_length_Return ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥COND_4320_0_TEST_GE(&&(&&(>=(0, 1), >(-(x1[5], 1), 0)), <(-(x1[5], 1), 4)), -(x1[5], 1), 0, 1, x4[4])∧(UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥))
(121) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[5] ≥ 0∧[(-1)bso_46] ≥ 0)
(122) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[5] ≥ 0∧[(-1)bso_46] ≥ 0)
(123) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[(-2)bni_45 + (-1)Bound*bni_45] + [bni_45]x1[5] ≥ 0∧[(-1)bso_46] ≥ 0)
(124) ((UIncreasing(COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])), ≥)∧[bni_45] = 0∧[(-2)bni_45 + (-1)Bound*bni_45] ≥ 0∧0 = 0∧[(-1)bso_46] ≥ 0)
(125) (&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4))=TRUE∧x1[4]=x1[5]∧x3[4]=x3[5]∧x2[4]=x2[5]∧x4[4]=x4[5] ⇒ COND_4320_0_TEST_GE(TRUE, x1[5], x3[5], x2[5], x4[5])≥NonInfC∧COND_4320_0_TEST_GE(TRUE, x1[5], x3[5], x2[5], x4[5])≥1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])∧(UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])), ≥))
(126) (<(x1[4], 4)=TRUE∧>=(x3[4], x2[4])=TRUE∧>(x1[4], 0)=TRUE ⇒ COND_4320_0_TEST_GE(TRUE, x1[4], x3[4], x2[4], x4[4])≥NonInfC∧COND_4320_0_TEST_GE(TRUE, x1[4], x3[4], x2[4], x4[4])≥1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[4]), -(x1[4], 1), x4[4])∧(UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])), ≥))
(127) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])), ≥)∧[(-1)bni_47 + (-1)Bound*bni_47] + [bni_47]x1[4] ≥ 0∧[1 + (-1)bso_48] ≥ 0)
(128) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])), ≥)∧[(-1)bni_47 + (-1)Bound*bni_47] + [bni_47]x1[4] ≥ 0∧[1 + (-1)bso_48] ≥ 0)
(129) ([3] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] + [-1] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])), ≥)∧[(-1)bni_47 + (-1)Bound*bni_47] + [bni_47]x1[4] ≥ 0∧[1 + (-1)bso_48] ≥ 0)
(130) ([2] + [-1]x1[4] ≥ 0∧x3[4] + [-1]x2[4] ≥ 0∧x1[4] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])), ≥)∧[(-1)Bound*bni_47] + [bni_47]x1[4] ≥ 0∧[1 + (-1)bso_48] ≥ 0)
(131) ([2] + [-1]x1[4] ≥ 0∧x3[4] ≥ 0∧x1[4] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])), ≥)∧[(-1)Bound*bni_47] + [bni_47]x1[4] ≥ 0∧[1 + (-1)bso_48] ≥ 0)
(132) ([2] + [-1]x1[4] ≥ 0∧x3[4] ≥ 0∧x1[4] ≥ 0∧x2[4] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])), ≥)∧[(-1)Bound*bni_47] + [bni_47]x1[4] ≥ 0∧[1 + (-1)bso_48] ≥ 0)
(133) ([2] + [-1]x1[4] ≥ 0∧x3[4] ≥ 0∧x1[4] ≥ 0∧x2[4] ≥ 0 ⇒ (UIncreasing(1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])), ≥)∧[(-1)Bound*bni_47] + [bni_47]x1[4] ≥ 0∧[1 + (-1)bso_48] ≥ 0)
(134) (1915_0_length_Load(x3[1])=2393_0_length_Return(x0[2])∧-(x2[1], 1)=x2[2]∧x3[1]=java.lang.Object(List(1635_0_length_Return))∧x2[2]=x1[6]∧0=x3[6]∧x0[2]=x2[6] ⇒ 4320_0_TEST_GE(x1[6], x3[6], x2[6])≥NonInfC∧4320_0_TEST_GE(x1[6], x3[6], x2[6])≥COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(135) (java.lang.Object(List(1635_0_length_Return))=x29∧1915_0_length_Load(x29)=2393_0_length_Return(x0[2]) ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥COND_4320_0_TEST_GE1(&&(<(0, x0[2]), <(-(x2[1], 1), 3)), -(x2[1], 1), 0, x0[2], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(136) (1627_0_length_NONNULL=2393_0_length_Return(x0[2])∧java.lang.Object(List(1635_0_length_Return))=x30 ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥COND_4320_0_TEST_GE1(&&(<(0, x0[2]), <(-(x2[1], 1), 3)), -(x2[1], 1), 0, x0[2], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(137) (1627_0_length_NONNULL=2393_0_length_Return(x0[2]) ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, x0[2])≥COND_4320_0_TEST_GE1(&&(<(0, x0[2]), <(-(x2[1], 1), 3)), -(x2[1], 1), 0, x0[2], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(138) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x2[1] ≥ 0∧[(-1)bso_50] ≥ 0)
(139) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x2[1] ≥ 0∧[(-1)bso_50] ≥ 0)
(140) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x2[1] ≥ 0∧[(-1)bso_50] ≥ 0)
(141) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧0 = 0∧[bni_49] = 0∧[(-2)bni_49 + (-1)Bound*bni_49] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_50] ≥ 0)
(142) (1915_0_length_Load(x3[1])=1635_0_length_Return∧-(x2[1], 1)=x2[3]∧x3[1]=java.lang.Object(List(1635_0_length_Return))∧x2[3]=x1[6]∧0=x3[6]∧1=x2[6] ⇒ 4320_0_TEST_GE(x1[6], x3[6], x2[6])≥NonInfC∧4320_0_TEST_GE(x1[6], x3[6], x2[6])≥COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(143) (java.lang.Object(List(1635_0_length_Return))=x31∧1915_0_length_Load(x31)=1635_0_length_Return ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥COND_4320_0_TEST_GE1(&&(<(0, 1), <(-(x2[1], 1), 3)), -(x2[1], 1), 0, 1, x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(144) (1627_0_length_NONNULL=1635_0_length_Return∧java.lang.Object(List(1635_0_length_Return))=x32 ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥COND_4320_0_TEST_GE1(&&(<(0, 1), <(-(x2[1], 1), 3)), -(x2[1], 1), 0, 1, x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(145) (1627_0_length_NONNULL=1635_0_length_Return ⇒ 4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x2[1], 1), 0, 1)≥COND_4320_0_TEST_GE1(&&(<(0, 1), <(-(x2[1], 1), 3)), -(x2[1], 1), 0, 1, x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(146) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x2[1] ≥ 0∧[(-1)bso_50] ≥ 0)
(147) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x2[1] ≥ 0∧[(-1)bso_50] ≥ 0)
(148) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x2[1] ≥ 0∧[(-1)bso_50] ≥ 0)
(149) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[bni_49] = 0∧[(-2)bni_49 + (-1)Bound*bni_49] ≥ 0∧0 = 0∧[(-1)bso_50] ≥ 0)
(150) (4356_0_bubble_Load(x4[7])=1635_0_length_Return∧x1[7]=x1[8]∧x2[7]=x2[8]∧x3[7]=x3[8]∧x4[7]=NULL∧x1[8]=x1[6]∧+(x3[8], 1)=x3[6]∧x2[8]=x2[6] ⇒ 4320_0_TEST_GE(x1[6], x3[6], x2[6])≥NonInfC∧4320_0_TEST_GE(x1[6], x3[6], x2[6])≥COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(151) (NULL=x33∧4356_0_bubble_Load(x33)=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x3[8], 1), x2[7]), <(x1[7], 3)), x1[7], +(x3[8], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(152) (4266_0_bubble_NULL(x34)=1635_0_length_Return∧NULL=x34 ⇒ 4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x3[8], 1), x2[7]), <(x1[7], 3)), x1[7], +(x3[8], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(153) (4266_0_bubble_NULL(NULL)=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x3[8], 1), x2[7]), <(x1[7], 3)), x1[7], +(x3[8], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(154) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[7] ≥ 0∧[(-1)bso_50] ≥ 0)
(155) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[7] ≥ 0∧[(-1)bso_50] ≥ 0)
(156) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[7] ≥ 0∧[(-1)bso_50] ≥ 0)
(157) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧0 = 0∧0 = 0∧[bni_49] = 0∧[(-1)bni_49 + (-1)Bound*bni_49] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_50] ≥ 0)
(158) (4356_0_bubble_Load(x4[7])=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧x1[7]=x2[9]∧x2[7]=x3[9]∧x3[7]=x4[9]∧x4[7]=java.lang.Object(List(x0[9]))∧x2[9]=x1[6]∧+(x4[9], 1)=x3[6]∧x3[9]=x2[6] ⇒ 4320_0_TEST_GE(x1[6], x3[6], x2[6])≥NonInfC∧4320_0_TEST_GE(x1[6], x3[6], x2[6])≥COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(159) (java.lang.Object(List(x0[9]))=x35∧4356_0_bubble_Load(x35)=4345_0_bubble_Return(java.lang.Object(List(x0[9]))) ⇒ 4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x4[9], 1), x2[7]), <(x1[7], 3)), x1[7], +(x4[9], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(160) (4266_0_bubble_NULL(x36)=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧java.lang.Object(List(x0[9]))=x36 ⇒ 4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x4[9], 1), x2[7]), <(x1[7], 3)), x1[7], +(x4[9], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(161) (4266_0_bubble_NULL(java.lang.Object(List(x0[9])))=4345_0_bubble_Return(java.lang.Object(List(x0[9]))) ⇒ 4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x4[9], 1), x2[7]), <(x1[7], 3)), x1[7], +(x4[9], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(162) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[7] ≥ 0∧[(-1)bso_50] ≥ 0)
(163) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[7] ≥ 0∧[(-1)bso_50] ≥ 0)
(164) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[7] ≥ 0∧[(-1)bso_50] ≥ 0)
(165) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧0 = 0∧0 = 0∧[bni_49] = 0∧[(-1)bni_49 + (-1)Bound*bni_49] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_50] ≥ 0)
(166) (4356_0_bubble_Load(x4[7])=1635_0_length_Return∧x1[7]=x1[10]∧x2[7]=x2[10]∧x3[7]=x3[10]∧x4[7]=x4[10]∧x1[10]=x1[6]∧+(x3[10], 1)=x3[6]∧x2[10]=x2[6] ⇒ 4320_0_TEST_GE(x1[6], x3[6], x2[6])≥NonInfC∧4320_0_TEST_GE(x1[6], x3[6], x2[6])≥COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(167) (4356_0_bubble_Load(x4[7])=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x3[10], 1), x2[7]), <(x1[7], 3)), x1[7], +(x3[10], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(168) (4266_0_bubble_NULL(x37)=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x3[10], 1), x2[7]), <(x1[7], 3)), x1[7], +(x3[10], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(169) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[7] ≥ 0∧[(-1)bso_50] ≥ 0)
(170) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[7] ≥ 0∧[(-1)bso_50] ≥ 0)
(171) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[7] ≥ 0∧[(-1)bso_50] ≥ 0)
(172) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧0 = 0∧0 = 0∧[bni_49] = 0∧[(-1)bni_49 + (-1)Bound*bni_49] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_50] ≥ 0)
(173) (1915_0_length_Load(x4[5])=2393_0_length_Return(x0[2])∧-(x1[5], 1)=x2[2]∧x4[5]=java.lang.Object(List(1635_0_length_Return))∧x2[2]=x1[6]∧0=x3[6]∧x0[2]=x2[6] ⇒ 4320_0_TEST_GE(x1[6], x3[6], x2[6])≥NonInfC∧4320_0_TEST_GE(x1[6], x3[6], x2[6])≥COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(174) (java.lang.Object(List(1635_0_length_Return))=x38∧1915_0_length_Load(x38)=2393_0_length_Return(x0[2]) ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥COND_4320_0_TEST_GE1(&&(<(0, x0[2]), <(-(x1[5], 1), 3)), -(x1[5], 1), 0, x0[2], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(175) (1627_0_length_NONNULL=2393_0_length_Return(x0[2])∧java.lang.Object(List(1635_0_length_Return))=x39 ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥COND_4320_0_TEST_GE1(&&(<(0, x0[2]), <(-(x1[5], 1), 3)), -(x1[5], 1), 0, x0[2], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(176) (1627_0_length_NONNULL=2393_0_length_Return(x0[2]) ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, x0[2])≥COND_4320_0_TEST_GE1(&&(<(0, x0[2]), <(-(x1[5], 1), 3)), -(x1[5], 1), 0, x0[2], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(177) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[5] ≥ 0∧[(-1)bso_50] ≥ 0)
(178) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[5] ≥ 0∧[(-1)bso_50] ≥ 0)
(179) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[5] ≥ 0∧[(-1)bso_50] ≥ 0)
(180) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧0 = 0∧[bni_49] = 0∧[(-2)bni_49 + (-1)Bound*bni_49] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_50] ≥ 0)
(181) (1915_0_length_Load(x4[5])=1635_0_length_Return∧-(x1[5], 1)=x2[3]∧x4[5]=java.lang.Object(List(1635_0_length_Return))∧x2[3]=x1[6]∧0=x3[6]∧1=x2[6] ⇒ 4320_0_TEST_GE(x1[6], x3[6], x2[6])≥NonInfC∧4320_0_TEST_GE(x1[6], x3[6], x2[6])≥COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(182) (java.lang.Object(List(1635_0_length_Return))=x40∧1915_0_length_Load(x40)=1635_0_length_Return ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥COND_4320_0_TEST_GE1(&&(<(0, 1), <(-(x1[5], 1), 3)), -(x1[5], 1), 0, 1, x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(183) (1627_0_length_NONNULL=1635_0_length_Return∧java.lang.Object(List(1635_0_length_Return))=x41 ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥COND_4320_0_TEST_GE1(&&(<(0, 1), <(-(x1[5], 1), 3)), -(x1[5], 1), 0, 1, x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(184) (1627_0_length_NONNULL=1635_0_length_Return ⇒ 4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥NonInfC∧4320_0_TEST_GE(-(x1[5], 1), 0, 1)≥COND_4320_0_TEST_GE1(&&(<(0, 1), <(-(x1[5], 1), 3)), -(x1[5], 1), 0, 1, x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(185) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[5] ≥ 0∧[(-1)bso_50] ≥ 0)
(186) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[5] ≥ 0∧[(-1)bso_50] ≥ 0)
(187) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_49 + (-1)Bound*bni_49] + [bni_49]x1[5] ≥ 0∧[(-1)bso_50] ≥ 0)
(188) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[bni_49] = 0∧[(-2)bni_49 + (-1)Bound*bni_49] ≥ 0∧0 = 0∧[(-1)bso_50] ≥ 0)
(189) (&&(<(x3[6], x2[6]), <(x1[6], 3))=TRUE∧x1[6]=x1[7]∧x3[6]=x3[7]∧x2[6]=x2[7]∧x4[6]=x4[7] ⇒ COND_4320_0_TEST_GE1(TRUE, x1[7], x3[7], x2[7], x4[7])≥NonInfC∧COND_4320_0_TEST_GE1(TRUE, x1[7], x3[7], x2[7], x4[7])≥4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])∧(UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥))
(190) (<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ COND_4320_0_TEST_GE1(TRUE, x1[6], x3[6], x2[6], x4[6])≥NonInfC∧COND_4320_0_TEST_GE1(TRUE, x1[6], x3[6], x2[6], x4[6])≥4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[6]), x1[6], x2[6], x3[6], x4[6])∧(UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥))
(191) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)bni_51 + (-1)Bound*bni_51] + [bni_51]x1[6] ≥ 0∧[(-1)bso_52] ≥ 0)
(192) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)bni_51 + (-1)Bound*bni_51] + [bni_51]x1[6] ≥ 0∧[(-1)bso_52] ≥ 0)
(193) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)bni_51 + (-1)Bound*bni_51] + [bni_51]x1[6] ≥ 0∧[(-1)bso_52] ≥ 0)
(194) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)bni_51 + (-1)Bound*bni_51] + [bni_51]x1[6] ≥ 0∧[(-1)bso_52] ≥ 0)
(195) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)bni_51 + (-1)Bound*bni_51] + [bni_51]x1[6] ≥ 0∧[(-1)bso_52] ≥ 0)
(196) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)bni_51 + (-1)Bound*bni_51] + [bni_51]x1[6] ≥ 0∧[(-1)bso_52] ≥ 0)
(197) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)bni_51 + (-1)Bound*bni_51] + [bni_51]x1[6] ≥ 0∧[(-1)bso_52] ≥ 0)
(198) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)bni_51 + (-1)Bound*bni_51] + [(-1)bni_51]x1[6] ≥ 0∧[(-1)bso_52] ≥ 0)
(199) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)bni_51 + (-1)Bound*bni_51] + [bni_51]x1[6] ≥ 0∧[(-1)bso_52] ≥ 0)
(200) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)bni_51 + (-1)Bound*bni_51] + [(-1)bni_51]x1[6] ≥ 0∧[(-1)bso_52] ≥ 0)
(201) (&&(<(x3[6], x2[6]), <(x1[6], 3))=TRUE∧x1[6]=x1[7]∧x3[6]=x3[7]∧x2[6]=x2[7]∧x4[6]=x4[7]∧4356_0_bubble_Load(x4[7])=1635_0_length_Return∧x1[7]=x1[8]∧x2[7]=x2[8]∧x3[7]=x3[8]∧x4[7]=NULL ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[8], x2[8], x3[8], NULL)≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[8], x2[8], x3[8], NULL)≥4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])∧(UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥))
(202) (NULL=x42∧4356_0_bubble_Load(x42)=1635_0_length_Return∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥))
(203) (4266_0_bubble_NULL(x43)=1635_0_length_Return∧NULL=x43∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥))
(204) (4266_0_bubble_NULL(NULL)=1635_0_length_Return∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥))
(205) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_53 + (-1)Bound*bni_53] + [bni_53]x1[6] ≥ 0∧[(-1)bso_54] ≥ 0)
(206) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_53 + (-1)Bound*bni_53] + [bni_53]x1[6] ≥ 0∧[(-1)bso_54] ≥ 0)
(207) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_53 + (-1)Bound*bni_53] + [bni_53]x1[6] ≥ 0∧[(-1)bso_54] ≥ 0)
(208) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_53 + (-1)Bound*bni_53] + [bni_53]x1[6] ≥ 0∧[(-1)bso_54] ≥ 0)
(209) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_53 + (-1)Bound*bni_53] + [bni_53]x1[6] ≥ 0∧[(-1)bso_54] ≥ 0)
(210) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_53 + (-1)Bound*bni_53] + [bni_53]x1[6] ≥ 0∧[(-1)bso_54] ≥ 0)
(211) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_53 + (-1)Bound*bni_53] + [bni_53]x1[6] ≥ 0∧[(-1)bso_54] ≥ 0)
(212) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_53 + (-1)Bound*bni_53] + [(-1)bni_53]x1[6] ≥ 0∧[(-1)bso_54] ≥ 0)
(213) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_53 + (-1)Bound*bni_53] + [bni_53]x1[6] ≥ 0∧[(-1)bso_54] ≥ 0)
(214) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_53 + (-1)Bound*bni_53] + [(-1)bni_53]x1[6] ≥ 0∧[(-1)bso_54] ≥ 0)
(215) (&&(<(x3[6], x2[6]), <(x1[6], 3))=TRUE∧x1[6]=x1[7]∧x3[6]=x3[7]∧x2[6]=x2[7]∧x4[6]=x4[7]∧4356_0_bubble_Load(x4[7])=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧x1[7]=x2[9]∧x2[7]=x3[9]∧x3[7]=x4[9]∧x4[7]=java.lang.Object(List(x0[9])) ⇒ 4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x2[9], x3[9], x4[9], java.lang.Object(List(x0[9])))≥NonInfC∧4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x2[9], x3[9], x4[9], java.lang.Object(List(x0[9])))≥4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])∧(UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥))
(216) (java.lang.Object(List(x0[9]))=x44∧4356_0_bubble_Load(x44)=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥NonInfC∧4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥))
(217) (4266_0_bubble_NULL(x45)=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧java.lang.Object(List(x0[9]))=x45∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥NonInfC∧4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥))
(218) (4266_0_bubble_NULL(java.lang.Object(List(x0[9])))=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥NonInfC∧4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥))
(219) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_55 + (-1)Bound*bni_55] + [bni_55]x1[6] ≥ 0∧[(-1)bso_56] ≥ 0)
(220) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_55 + (-1)Bound*bni_55] + [bni_55]x1[6] ≥ 0∧[(-1)bso_56] ≥ 0)
(221) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_55 + (-1)Bound*bni_55] + [bni_55]x1[6] ≥ 0∧[(-1)bso_56] ≥ 0)
(222) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_55 + (-1)Bound*bni_55] + [bni_55]x1[6] ≥ 0∧[(-1)bso_56] ≥ 0)
(223) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_55 + (-1)Bound*bni_55] + [bni_55]x1[6] ≥ 0∧[(-1)bso_56] ≥ 0)
(224) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_55 + (-1)Bound*bni_55] + [bni_55]x1[6] ≥ 0∧[(-1)bso_56] ≥ 0)
(225) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_55 + (-1)Bound*bni_55] + [bni_55]x1[6] ≥ 0∧[(-1)bso_56] ≥ 0)
(226) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_55 + (-1)Bound*bni_55] + [(-1)bni_55]x1[6] ≥ 0∧[(-1)bso_56] ≥ 0)
(227) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_55 + (-1)Bound*bni_55] + [(-1)bni_55]x1[6] ≥ 0∧[(-1)bso_56] ≥ 0)
(228) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_55 + (-1)Bound*bni_55] + [bni_55]x1[6] ≥ 0∧[(-1)bso_56] ≥ 0)
(229) (&&(<(x3[6], x2[6]), <(x1[6], 3))=TRUE∧x1[6]=x1[7]∧x3[6]=x3[7]∧x2[6]=x2[7]∧x4[6]=x4[7]∧4356_0_bubble_Load(x4[7])=1635_0_length_Return∧x1[7]=x1[10]∧x2[7]=x2[10]∧x3[7]=x3[10]∧x4[7]=x4[10] ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[10], x2[10], x3[10], x4[10])≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[10], x2[10], x3[10], x4[10])≥4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])∧(UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥))
(230) (4356_0_bubble_Load(x4[7])=1635_0_length_Return∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], x4[7])≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], x4[7])≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥))
(231) (4266_0_bubble_NULL(x46)=1635_0_length_Return∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], x46)≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], x46)≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥))
(232) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_57 + (-1)Bound*bni_57] + [bni_57]x1[6] ≥ 0∧[(-1)bso_58] ≥ 0)
(233) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_57 + (-1)Bound*bni_57] + [bni_57]x1[6] ≥ 0∧[(-1)bso_58] ≥ 0)
(234) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_57 + (-1)Bound*bni_57] + [bni_57]x1[6] ≥ 0∧[(-1)bso_58] ≥ 0)
(235) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_57 + (-1)Bound*bni_57] + [bni_57]x1[6] ≥ 0∧[(-1)bso_58] ≥ 0)
(236) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_57 + (-1)Bound*bni_57] + [bni_57]x1[6] ≥ 0∧[(-1)bso_58] ≥ 0)
(237) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_57 + (-1)Bound*bni_57] + [bni_57]x1[6] ≥ 0∧[(-1)bso_58] ≥ 0)
(238) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_57 + (-1)Bound*bni_57] + [bni_57]x1[6] ≥ 0∧[(-1)bso_58] ≥ 0)
(239) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_57 + (-1)Bound*bni_57] + [(-1)bni_57]x1[6] ≥ 0∧[(-1)bso_58] ≥ 0)
(240) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_57 + (-1)Bound*bni_57] + [bni_57]x1[6] ≥ 0∧[(-1)bso_58] ≥ 0)
(241) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_57 + (-1)Bound*bni_57] + [(-1)bni_57]x1[6] ≥ 0∧[(-1)bso_58] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(1915_0_length_Load(x1)) = [-1]
POL(1627_0_length_NONNULL) = [-1]
POL(4356_0_bubble_Load(x1)) = [-1]
POL(4266_0_bubble_NULL(x1)) = [-1]
POL(1635_0_length_Return) = [-1]
POL(1690_1_length_InvokeMethod(x1)) = [-1] + [-1]x1
POL(2393_0_length_Return(x1)) = [-1] + x1
POL(Cond_1690_1_length_InvokeMethod(x1, x2)) = [-1] + x2
POL(>(x1, x2)) = [-1]
POL(0) = 0
POL(+(x1, x2)) = x1 + x2
POL(1) = [1]
POL(2) = [2]
POL(4359_1_test_InvokeMethod(x1, x2)) = [-1]
POL(-1) = [-1]
POL(NULL) = [-1]
POL(java.lang.Object(x1)) = [-1]
POL(List(x1)) = [-1]
POL(4330_0_bubble_NONNULL(x1)) = [-1]
POL(4345_0_bubble_Return(x1)) = [-1]
POL(4548_1_bubble_InvokeMethod(x1)) = [-1]
POL(1915_1_TEST_INVOKEMETHOD(x1, x2, x3)) = [-1] + x2
POL(COND_1915_1_TEST_INVOKEMETHOD(x1, x2, x3, x4, x5)) = [-1] + x3
POL(&&(x1, x2)) = [-1]
POL(<(x1, x2)) = [-1]
POL(4) = [4]
POL(-(x1, x2)) = x1 + [-1]x2
POL(4320_0_TEST_GE(x1, x2, x3)) = [-1] + x1
POL(COND_4320_0_TEST_GE(x1, x2, x3, x4, x5)) = [-1] + x2
POL(>=(x1, x2)) = [-1]
POL(COND_4320_0_TEST_GE1(x1, x2, x3, x4, x5)) = [-1] + x2
POL(3) = [3]
POL(4356_1_TEST_INVOKEMETHOD(x1, x2, x3, x4, x5)) = [-1] + x2
COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, x2[1], NULL, x3[1]) → 1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]), -(x2[1], 1), x3[1])
COND_4320_0_TEST_GE(TRUE, x1[5], x3[5], x2[5], x4[5]) → 1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])
1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[0], NULL) → COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])
COND_1915_1_TEST_INVOKEMETHOD(TRUE, 1635_0_length_Return, x2[1], NULL, x3[1]) → 1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x3[1]), -(x2[1], 1), x3[1])
1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), x2[2], java.lang.Object(List(1635_0_length_Return))) → 4320_0_TEST_GE(x2[2], 0, x0[2])
1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[3], java.lang.Object(List(1635_0_length_Return))) → 4320_0_TEST_GE(x2[3], 0, 1)
COND_4320_0_TEST_GE(TRUE, x1[5], x3[5], x2[5], x4[5]) → 1915_1_TEST_INVOKEMETHOD(1915_0_length_Load(x4[5]), -(x1[5], 1), x4[5])
1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[0], NULL) → COND_1915_1_TEST_INVOKEMETHOD(&&(>(x2[0], 0), <(x2[0], 4)), 1635_0_length_Return, x2[0], NULL, x3[0])
1915_1_TEST_INVOKEMETHOD(2393_0_length_Return(x0[2]), x2[2], java.lang.Object(List(1635_0_length_Return))) → 4320_0_TEST_GE(x2[2], 0, x0[2])
1915_1_TEST_INVOKEMETHOD(1635_0_length_Return, x2[3], java.lang.Object(List(1635_0_length_Return))) → 4320_0_TEST_GE(x2[3], 0, 1)
4320_0_TEST_GE(x1[4], x3[4], x2[4]) → COND_4320_0_TEST_GE(&&(&&(>=(x3[4], x2[4]), >(x1[4], 0)), <(x1[4], 4)), x1[4], x3[4], x2[4], x4[4])
4320_0_TEST_GE(x1[6], x3[6], x2[6]) → COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])
COND_4320_0_TEST_GE1(TRUE, x1[7], x3[7], x2[7], x4[7]) → 4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])
4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[8], x2[8], x3[8], NULL) → 4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])
4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x2[9], x3[9], x4[9], java.lang.Object(List(x0[9]))) → 4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])
4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[10], x2[10], x3[10], x4[10]) → 4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])
!= | ~ | 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
(2) -> (4), if (x2[2] →* x1[4]∧0 →* x3[4]∧x0[2] →* x2[4])
(3) -> (4), if (x2[3] →* x1[4]∧0 →* x3[4]∧1 →* x2[4])
(8) -> (4), if (x1[8] →* x1[4]∧x3[8] + 1 →* x3[4]∧x2[8] →* x2[4])
(9) -> (4), if (x2[9] →* x1[4]∧x4[9] + 1 →* x3[4]∧x3[9] →* x2[4])
(10) -> (4), if (x1[10] →* x1[4]∧x3[10] + 1 →* x3[4]∧x2[10] →* x2[4])
(2) -> (6), if (x2[2] →* x1[6]∧0 →* x3[6]∧x0[2] →* x2[6])
(3) -> (6), if (x2[3] →* x1[6]∧0 →* x3[6]∧1 →* x2[6])
(8) -> (6), if (x1[8] →* x1[6]∧x3[8] + 1 →* x3[6]∧x2[8] →* x2[6])
(9) -> (6), if (x2[9] →* x1[6]∧x4[9] + 1 →* x3[6]∧x3[9] →* x2[6])
(10) -> (6), if (x1[10] →* x1[6]∧x3[10] + 1 →* x3[6]∧x2[10] →* x2[6])
(6) -> (7), if (x3[6] < x2[6] && x1[6] < 3 ∧x1[6] →* x1[7]∧x3[6] →* x3[7]∧x2[6] →* x2[7]∧x4[6] →* x4[7])
(7) -> (8), if (4356_0_bubble_Load(x4[7]) →* 1635_0_length_Return∧x1[7] →* x1[8]∧x2[7] →* x2[8]∧x3[7] →* x3[8]∧x4[7] →* NULL)
(7) -> (9), if (4356_0_bubble_Load(x4[7]) →* 4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧x1[7] →* x2[9]∧x2[7] →* x3[9]∧x3[7] →* x4[9]∧x4[7] →* java.lang.Object(List(x0[9])))
(7) -> (10), if (4356_0_bubble_Load(x4[7]) →* 1635_0_length_Return∧x1[7] →* x1[10]∧x2[7] →* x2[10]∧x3[7] →* x3[10]∧x4[7] →* x4[10])
!= | ~ | 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
(8) -> (6), if (x1[8] →* x1[6]∧x3[8] + 1 →* x3[6]∧x2[8] →* x2[6])
(9) -> (6), if (x2[9] →* x1[6]∧x4[9] + 1 →* x3[6]∧x3[9] →* x2[6])
(10) -> (6), if (x1[10] →* x1[6]∧x3[10] + 1 →* x3[6]∧x2[10] →* x2[6])
(6) -> (7), if (x3[6] < x2[6] && x1[6] < 3 ∧x1[6] →* x1[7]∧x3[6] →* x3[7]∧x2[6] →* x2[7]∧x4[6] →* x4[7])
(7) -> (8), if (4356_0_bubble_Load(x4[7]) →* 1635_0_length_Return∧x1[7] →* x1[8]∧x2[7] →* x2[8]∧x3[7] →* x3[8]∧x4[7] →* NULL)
(7) -> (9), if (4356_0_bubble_Load(x4[7]) →* 4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧x1[7] →* x2[9]∧x2[7] →* x3[9]∧x3[7] →* x4[9]∧x4[7] →* java.lang.Object(List(x0[9])))
(7) -> (10), if (4356_0_bubble_Load(x4[7]) →* 1635_0_length_Return∧x1[7] →* x1[10]∧x2[7] →* x2[10]∧x3[7] →* x3[10]∧x4[7] →* x4[10])
!= | ~ | 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
(8) -> (6), if (x1[8] →* x1[6]∧x3[8] + 1 →* x3[6]∧x2[8] →* x2[6])
(9) -> (6), if (x2[9] →* x1[6]∧x4[9] + 1 →* x3[6]∧x3[9] →* x2[6])
(10) -> (6), if (x1[10] →* x1[6]∧x3[10] + 1 →* x3[6]∧x2[10] →* x2[6])
(6) -> (7), if (x3[6] < x2[6] && x1[6] < 3 ∧x1[6] →* x1[7]∧x3[6] →* x3[7]∧x2[6] →* x2[7]∧x4[6] →* x4[7])
(7) -> (8), if (4356_0_bubble_Load(x4[7]) →* 1635_0_length_Return∧x1[7] →* x1[8]∧x2[7] →* x2[8]∧x3[7] →* x3[8]∧x4[7] →* NULL)
(7) -> (9), if (4356_0_bubble_Load(x4[7]) →* 4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧x1[7] →* x2[9]∧x2[7] →* x3[9]∧x3[7] →* x4[9]∧x4[7] →* java.lang.Object(List(x0[9])))
(7) -> (10), if (4356_0_bubble_Load(x4[7]) →* 1635_0_length_Return∧x1[7] →* x1[10]∧x2[7] →* x2[10]∧x3[7] →* x3[10]∧x4[7] →* x4[10])
(1) (&&(<(x3[6], x2[6]), <(x1[6], 3))=TRUE∧x1[6]=x1[7]∧x3[6]=x3[7]∧x2[6]=x2[7]∧x4[6]=x4[7]∧4356_0_bubble_Load(x4[7])=1635_0_length_Return∧x1[7]=x1[10]∧x2[7]=x2[10]∧x3[7]=x3[10]∧x4[7]=x4[10] ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[10], x2[10], x3[10], x4[10])≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[10], x2[10], x3[10], x4[10])≥4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])∧(UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥))
(2) (4356_0_bubble_Load(x4[7])=1635_0_length_Return∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], x4[7])≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], x4[7])≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥))
(3) (4266_0_bubble_NULL(x0)=1635_0_length_Return∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], x0)≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], x0)≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥))
(4) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_19 + (-1)Bound*bni_19] + [bni_19]x2[6] + [(-1)bni_19]x1[6] + [(-1)bni_19]x3[6] ≥ 0∧[1 + (-1)bso_20] ≥ 0)
(5) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_19 + (-1)Bound*bni_19] + [bni_19]x2[6] + [(-1)bni_19]x1[6] + [(-1)bni_19]x3[6] ≥ 0∧[1 + (-1)bso_20] ≥ 0)
(6) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)bni_19 + (-1)Bound*bni_19] + [bni_19]x2[6] + [(-1)bni_19]x1[6] + [(-1)bni_19]x3[6] ≥ 0∧[1 + (-1)bso_20] ≥ 0)
(7) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)Bound*bni_19] + [bni_19]x2[6] + [(-1)bni_19]x1[6] ≥ 0∧[1 + (-1)bso_20] ≥ 0)
(8) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)Bound*bni_19] + [bni_19]x2[6] + [(-1)bni_19]x1[6] ≥ 0∧[1 + (-1)bso_20] ≥ 0)
(9) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)Bound*bni_19] + [bni_19]x2[6] + [(-1)bni_19]x1[6] ≥ 0∧[1 + (-1)bso_20] ≥ 0)
(10) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)Bound*bni_19] + [bni_19]x2[6] + [(-1)bni_19]x1[6] ≥ 0∧[1 + (-1)bso_20] ≥ 0)
(11) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)Bound*bni_19] + [bni_19]x2[6] + [bni_19]x1[6] ≥ 0∧[1 + (-1)bso_20] ≥ 0)
(12) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)Bound*bni_19] + [bni_19]x2[6] + [(-1)bni_19]x1[6] ≥ 0∧[1 + (-1)bso_20] ≥ 0)
(13) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])), ≥)∧[(-1)Bound*bni_19] + [bni_19]x2[6] + [bni_19]x1[6] ≥ 0∧[1 + (-1)bso_20] ≥ 0)
(14) (&&(<(x3[6], x2[6]), <(x1[6], 3))=TRUE∧x1[6]=x1[7]∧x3[6]=x3[7]∧x2[6]=x2[7]∧x4[6]=x4[7]∧4356_0_bubble_Load(x4[7])=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧x1[7]=x2[9]∧x2[7]=x3[9]∧x3[7]=x4[9]∧x4[7]=java.lang.Object(List(x0[9])) ⇒ 4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x2[9], x3[9], x4[9], java.lang.Object(List(x0[9])))≥NonInfC∧4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x2[9], x3[9], x4[9], java.lang.Object(List(x0[9])))≥4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])∧(UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥))
(15) (java.lang.Object(List(x0[9]))=x1∧4356_0_bubble_Load(x1)=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥NonInfC∧4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥))
(16) (4266_0_bubble_NULL(x2)=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧java.lang.Object(List(x0[9]))=x2∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥NonInfC∧4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥))
(17) (4266_0_bubble_NULL(java.lang.Object(List(x0[9])))=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥NonInfC∧4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x1[6], x2[6], x3[6], java.lang.Object(List(x0[9])))≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥))
(18) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_21 + (-1)Bound*bni_21] + [bni_21]x2[6] + [(-1)bni_21]x1[6] + [(-1)bni_21]x3[6] ≥ 0∧[1 + (-1)bso_22] ≥ 0)
(19) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_21 + (-1)Bound*bni_21] + [bni_21]x2[6] + [(-1)bni_21]x1[6] + [(-1)bni_21]x3[6] ≥ 0∧[1 + (-1)bso_22] ≥ 0)
(20) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)bni_21 + (-1)Bound*bni_21] + [bni_21]x2[6] + [(-1)bni_21]x1[6] + [(-1)bni_21]x3[6] ≥ 0∧[1 + (-1)bso_22] ≥ 0)
(21) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)Bound*bni_21] + [bni_21]x2[6] + [(-1)bni_21]x1[6] ≥ 0∧[1 + (-1)bso_22] ≥ 0)
(22) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)Bound*bni_21] + [bni_21]x2[6] + [(-1)bni_21]x1[6] ≥ 0∧[1 + (-1)bso_22] ≥ 0)
(23) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)Bound*bni_21] + [bni_21]x2[6] + [(-1)bni_21]x1[6] ≥ 0∧[1 + (-1)bso_22] ≥ 0)
(24) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)Bound*bni_21] + [bni_21]x2[6] + [(-1)bni_21]x1[6] ≥ 0∧[1 + (-1)bso_22] ≥ 0)
(25) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)Bound*bni_21] + [bni_21]x2[6] + [bni_21]x1[6] ≥ 0∧[1 + (-1)bso_22] ≥ 0)
(26) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)Bound*bni_21] + [bni_21]x2[6] + [bni_21]x1[6] ≥ 0∧[1 + (-1)bso_22] ≥ 0)
(27) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])), ≥)∧[(-1)Bound*bni_21] + [bni_21]x2[6] + [(-1)bni_21]x1[6] ≥ 0∧[1 + (-1)bso_22] ≥ 0)
(28) (&&(<(x3[6], x2[6]), <(x1[6], 3))=TRUE∧x1[6]=x1[7]∧x3[6]=x3[7]∧x2[6]=x2[7]∧x4[6]=x4[7]∧4356_0_bubble_Load(x4[7])=1635_0_length_Return∧x1[7]=x1[8]∧x2[7]=x2[8]∧x3[7]=x3[8]∧x4[7]=NULL ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[8], x2[8], x3[8], NULL)≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[8], x2[8], x3[8], NULL)≥4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])∧(UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥))
(29) (NULL=x3∧4356_0_bubble_Load(x3)=1635_0_length_Return∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥))
(30) (4266_0_bubble_NULL(x4)=1635_0_length_Return∧NULL=x4∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥))
(31) (4266_0_bubble_NULL(NULL)=1635_0_length_Return∧<(x3[6], x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ 4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥NonInfC∧4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[6], x2[6], x3[6], NULL)≥4320_0_TEST_GE(x1[6], +(x3[6], 1), x2[6])∧(UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥))
(32) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_23 + (-1)Bound*bni_23] + [bni_23]x2[6] + [(-1)bni_23]x1[6] + [(-1)bni_23]x3[6] ≥ 0∧[1 + (-1)bso_24] ≥ 0)
(33) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_23 + (-1)Bound*bni_23] + [bni_23]x2[6] + [(-1)bni_23]x1[6] + [(-1)bni_23]x3[6] ≥ 0∧[1 + (-1)bso_24] ≥ 0)
(34) (x2[6] + [-1] + [-1]x3[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)bni_23 + (-1)Bound*bni_23] + [bni_23]x2[6] + [(-1)bni_23]x1[6] + [(-1)bni_23]x3[6] ≥ 0∧[1 + (-1)bso_24] ≥ 0)
(35) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)Bound*bni_23] + [bni_23]x2[6] + [(-1)bni_23]x1[6] ≥ 0∧[1 + (-1)bso_24] ≥ 0)
(36) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)Bound*bni_23] + [bni_23]x2[6] + [(-1)bni_23]x1[6] ≥ 0∧[1 + (-1)bso_24] ≥ 0)
(37) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)Bound*bni_23] + [bni_23]x2[6] + [(-1)bni_23]x1[6] ≥ 0∧[1 + (-1)bso_24] ≥ 0)
(38) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)Bound*bni_23] + [bni_23]x2[6] + [(-1)bni_23]x1[6] ≥ 0∧[1 + (-1)bso_24] ≥ 0)
(39) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)Bound*bni_23] + [bni_23]x2[6] + [bni_23]x1[6] ≥ 0∧[1 + (-1)bso_24] ≥ 0)
(40) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)Bound*bni_23] + [bni_23]x2[6] + [(-1)bni_23]x1[6] ≥ 0∧[1 + (-1)bso_24] ≥ 0)
(41) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[6] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])), ≥)∧[(-1)Bound*bni_23] + [bni_23]x2[6] + [bni_23]x1[6] ≥ 0∧[1 + (-1)bso_24] ≥ 0)
(42) (x1[8]=x1[6]∧+(x3[8], 1)=x3[6]∧x2[8]=x2[6]∧&&(<(x3[6], x2[6]), <(x1[6], 3))=TRUE∧x1[6]=x1[7]∧x3[6]=x3[7]∧x2[6]=x2[7]∧x4[6]=x4[7] ⇒ COND_4320_0_TEST_GE1(TRUE, x1[7], x3[7], x2[7], x4[7])≥NonInfC∧COND_4320_0_TEST_GE1(TRUE, x1[7], x3[7], x2[7], x4[7])≥4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])∧(UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥))
(43) (<(+(x3[8], 1), x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ COND_4320_0_TEST_GE1(TRUE, x1[6], +(x3[8], 1), x2[6], x4[6])≥NonInfC∧COND_4320_0_TEST_GE1(TRUE, x1[6], +(x3[8], 1), x2[6], x4[6])≥4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[6]), x1[6], x2[6], +(x3[8], 1), x4[6])∧(UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥))
(44) (x2[6] + [-2] + [-1]x3[8] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-2)bni_25 + (-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] + [(-1)bni_25]x3[8] ≥ 0∧[(-1)bso_26] ≥ 0)
(45) (x2[6] + [-2] + [-1]x3[8] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-2)bni_25 + (-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] + [(-1)bni_25]x3[8] ≥ 0∧[(-1)bso_26] ≥ 0)
(46) (x2[6] + [-2] + [-1]x3[8] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-2)bni_25 + (-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] + [(-1)bni_25]x3[8] ≥ 0∧[(-1)bso_26] ≥ 0)
(47) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(48) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[8] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(49) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[8] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(50) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[8] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(51) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[8] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(52) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[8] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(53) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[8] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(54) (x2[9]=x1[6]∧+(x4[9], 1)=x3[6]∧x3[9]=x2[6]∧&&(<(x3[6], x2[6]), <(x1[6], 3))=TRUE∧x1[6]=x1[7]∧x3[6]=x3[7]∧x2[6]=x2[7]∧x4[6]=x4[7] ⇒ COND_4320_0_TEST_GE1(TRUE, x1[7], x3[7], x2[7], x4[7])≥NonInfC∧COND_4320_0_TEST_GE1(TRUE, x1[7], x3[7], x2[7], x4[7])≥4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])∧(UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥))
(55) (<(+(x4[9], 1), x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ COND_4320_0_TEST_GE1(TRUE, x1[6], +(x4[9], 1), x2[6], x4[6])≥NonInfC∧COND_4320_0_TEST_GE1(TRUE, x1[6], +(x4[9], 1), x2[6], x4[6])≥4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[6]), x1[6], x2[6], +(x4[9], 1), x4[6])∧(UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥))
(56) (x2[6] + [-2] + [-1]x4[9] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-2)bni_25 + (-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] + [(-1)bni_25]x4[9] ≥ 0∧[(-1)bso_26] ≥ 0)
(57) (x2[6] + [-2] + [-1]x4[9] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-2)bni_25 + (-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] + [(-1)bni_25]x4[9] ≥ 0∧[(-1)bso_26] ≥ 0)
(58) (x2[6] + [-2] + [-1]x4[9] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-2)bni_25 + (-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] + [(-1)bni_25]x4[9] ≥ 0∧[(-1)bso_26] ≥ 0)
(59) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(60) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x4[9] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(61) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x4[9] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(62) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x4[9] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(63) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x4[9] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(64) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x4[9] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(65) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x4[9] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(66) (x1[10]=x1[6]∧+(x3[10], 1)=x3[6]∧x2[10]=x2[6]∧&&(<(x3[6], x2[6]), <(x1[6], 3))=TRUE∧x1[6]=x1[7]∧x3[6]=x3[7]∧x2[6]=x2[7]∧x4[6]=x4[7] ⇒ COND_4320_0_TEST_GE1(TRUE, x1[7], x3[7], x2[7], x4[7])≥NonInfC∧COND_4320_0_TEST_GE1(TRUE, x1[7], x3[7], x2[7], x4[7])≥4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])∧(UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥))
(67) (<(+(x3[10], 1), x2[6])=TRUE∧<(x1[6], 3)=TRUE ⇒ COND_4320_0_TEST_GE1(TRUE, x1[6], +(x3[10], 1), x2[6], x4[6])≥NonInfC∧COND_4320_0_TEST_GE1(TRUE, x1[6], +(x3[10], 1), x2[6], x4[6])≥4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[6]), x1[6], x2[6], +(x3[10], 1), x4[6])∧(UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥))
(68) (x2[6] + [-2] + [-1]x3[10] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-2)bni_25 + (-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] + [(-1)bni_25]x3[10] ≥ 0∧[(-1)bso_26] ≥ 0)
(69) (x2[6] + [-2] + [-1]x3[10] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-2)bni_25 + (-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] + [(-1)bni_25]x3[10] ≥ 0∧[(-1)bso_26] ≥ 0)
(70) (x2[6] + [-2] + [-1]x3[10] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-2)bni_25 + (-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] + [(-1)bni_25]x3[10] ≥ 0∧[(-1)bso_26] ≥ 0)
(71) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(72) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[10] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(73) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[10] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(74) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[10] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(75) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[10] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(76) (x2[6] ≥ 0∧[2] + x1[6] ≥ 0∧x3[10] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(77) (x2[6] ≥ 0∧[2] + [-1]x1[6] ≥ 0∧x3[10] ≥ 0∧x1[6] ≥ 0 ⇒ (UIncreasing(4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])), ≥)∧[(-1)Bound*bni_25] + [bni_25]x2[6] + [(-1)bni_25]x1[6] ≥ 0∧[(-1)bso_26] ≥ 0)
(78) (4356_0_bubble_Load(x4[7])=1635_0_length_Return∧x1[7]=x1[8]∧x2[7]=x2[8]∧x3[7]=x3[8]∧x4[7]=NULL∧x1[8]=x1[6]∧+(x3[8], 1)=x3[6]∧x2[8]=x2[6] ⇒ 4320_0_TEST_GE(x1[6], x3[6], x2[6])≥NonInfC∧4320_0_TEST_GE(x1[6], x3[6], x2[6])≥COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(79) (NULL=x5∧4356_0_bubble_Load(x5)=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x3[8], 1), x2[7]), <(x1[7], 3)), x1[7], +(x3[8], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(80) (4266_0_bubble_NULL(x6)=1635_0_length_Return∧NULL=x6 ⇒ 4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x3[8], 1), x2[7]), <(x1[7], 3)), x1[7], +(x3[8], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(81) (4266_0_bubble_NULL(NULL)=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[8], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x3[8], 1), x2[7]), <(x1[7], 3)), x1[7], +(x3[8], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(82) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_27 + (-1)Bound*bni_27] + [(-1)bni_27]x3[8] + [bni_27]x2[7] + [(-1)bni_27]x1[7] ≥ 0∧[(-1)bso_28] ≥ 0)
(83) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_27 + (-1)Bound*bni_27] + [(-1)bni_27]x3[8] + [bni_27]x2[7] + [(-1)bni_27]x1[7] ≥ 0∧[(-1)bso_28] ≥ 0)
(84) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_27 + (-1)Bound*bni_27] + [(-1)bni_27]x3[8] + [bni_27]x2[7] + [(-1)bni_27]x1[7] ≥ 0∧[(-1)bso_28] ≥ 0)
(85) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_27] = 0∧[bni_27] = 0∧[(-1)bni_27] = 0∧[(-2)bni_27 + (-1)Bound*bni_27] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_28] ≥ 0)
(86) (4356_0_bubble_Load(x4[7])=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧x1[7]=x2[9]∧x2[7]=x3[9]∧x3[7]=x4[9]∧x4[7]=java.lang.Object(List(x0[9]))∧x2[9]=x1[6]∧+(x4[9], 1)=x3[6]∧x3[9]=x2[6] ⇒ 4320_0_TEST_GE(x1[6], x3[6], x2[6])≥NonInfC∧4320_0_TEST_GE(x1[6], x3[6], x2[6])≥COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(87) (java.lang.Object(List(x0[9]))=x7∧4356_0_bubble_Load(x7)=4345_0_bubble_Return(java.lang.Object(List(x0[9]))) ⇒ 4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x4[9], 1), x2[7]), <(x1[7], 3)), x1[7], +(x4[9], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(88) (4266_0_bubble_NULL(x8)=4345_0_bubble_Return(java.lang.Object(List(x0[9])))∧java.lang.Object(List(x0[9]))=x8 ⇒ 4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x4[9], 1), x2[7]), <(x1[7], 3)), x1[7], +(x4[9], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(89) (4266_0_bubble_NULL(java.lang.Object(List(x0[9])))=4345_0_bubble_Return(java.lang.Object(List(x0[9]))) ⇒ 4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x4[9], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x4[9], 1), x2[7]), <(x1[7], 3)), x1[7], +(x4[9], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(90) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_27 + (-1)Bound*bni_27] + [(-1)bni_27]x4[9] + [bni_27]x2[7] + [(-1)bni_27]x1[7] ≥ 0∧[(-1)bso_28] ≥ 0)
(91) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_27 + (-1)Bound*bni_27] + [(-1)bni_27]x4[9] + [bni_27]x2[7] + [(-1)bni_27]x1[7] ≥ 0∧[(-1)bso_28] ≥ 0)
(92) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_27 + (-1)Bound*bni_27] + [(-1)bni_27]x4[9] + [bni_27]x2[7] + [(-1)bni_27]x1[7] ≥ 0∧[(-1)bso_28] ≥ 0)
(93) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_27] = 0∧[bni_27] = 0∧[(-1)bni_27] = 0∧[(-2)bni_27 + (-1)Bound*bni_27] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_28] ≥ 0)
(94) (4356_0_bubble_Load(x4[7])=1635_0_length_Return∧x1[7]=x1[10]∧x2[7]=x2[10]∧x3[7]=x3[10]∧x4[7]=x4[10]∧x1[10]=x1[6]∧+(x3[10], 1)=x3[6]∧x2[10]=x2[6] ⇒ 4320_0_TEST_GE(x1[6], x3[6], x2[6])≥NonInfC∧4320_0_TEST_GE(x1[6], x3[6], x2[6])≥COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(95) (4356_0_bubble_Load(x4[7])=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x3[10], 1), x2[7]), <(x1[7], 3)), x1[7], +(x3[10], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(96) (4266_0_bubble_NULL(x9)=1635_0_length_Return ⇒ 4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥NonInfC∧4320_0_TEST_GE(x1[7], +(x3[10], 1), x2[7])≥COND_4320_0_TEST_GE1(&&(<(+(x3[10], 1), x2[7]), <(x1[7], 3)), x1[7], +(x3[10], 1), x2[7], x4[6])∧(UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥))
(97) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_27 + (-1)Bound*bni_27] + [(-1)bni_27]x3[10] + [bni_27]x2[7] + [(-1)bni_27]x1[7] ≥ 0∧[(-1)bso_28] ≥ 0)
(98) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_27 + (-1)Bound*bni_27] + [(-1)bni_27]x3[10] + [bni_27]x2[7] + [(-1)bni_27]x1[7] ≥ 0∧[(-1)bso_28] ≥ 0)
(99) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-2)bni_27 + (-1)Bound*bni_27] + [(-1)bni_27]x3[10] + [bni_27]x2[7] + [(-1)bni_27]x1[7] ≥ 0∧[(-1)bso_28] ≥ 0)
(100) ((UIncreasing(COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[6])), ≥)∧[(-1)bni_27] = 0∧[bni_27] = 0∧[(-1)bni_27] = 0∧[(-2)bni_27 + (-1)Bound*bni_27] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_28] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(4356_0_bubble_Load(x1)) = [-1]
POL(4266_0_bubble_NULL(x1)) = [-1]
POL(NULL) = [-1]
POL(1635_0_length_Return) = [-1]
POL(java.lang.Object(x1)) = [-1]
POL(List(x1)) = [-1]
POL(4330_0_bubble_NONNULL(x1)) = [-1]
POL(4548_1_bubble_InvokeMethod(x1)) = [-1]
POL(4345_0_bubble_Return(x1)) = [-1]
POL(4356_1_TEST_INVOKEMETHOD(x1, x2, x3, x4, x5)) = [-1] + x3 + [-1]x2 + [-1]x4
POL(4320_0_TEST_GE(x1, x2, x3)) = [-1] + [-1]x2 + x3 + [-1]x1
POL(+(x1, x2)) = x1 + x2
POL(1) = [1]
POL(COND_4320_0_TEST_GE1(x1, x2, x3, x4, x5)) = [-1] + x4 + [-1]x2 + [-1]x3
POL(&&(x1, x2)) = [-1]
POL(<(x1, x2)) = [-1]
POL(3) = [3]
4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[10], x2[10], x3[10], x4[10]) → 4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])
4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x2[9], x3[9], x4[9], java.lang.Object(List(x0[9]))) → 4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])
4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[8], x2[8], x3[8], NULL) → 4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])
4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[10], x2[10], x3[10], x4[10]) → 4320_0_TEST_GE(x1[10], +(x3[10], 1), x2[10])
4356_1_TEST_INVOKEMETHOD(4345_0_bubble_Return(java.lang.Object(List(x0[9]))), x2[9], x3[9], x4[9], java.lang.Object(List(x0[9]))) → 4320_0_TEST_GE(x2[9], +(x4[9], 1), x3[9])
4356_1_TEST_INVOKEMETHOD(1635_0_length_Return, x1[8], x2[8], x3[8], NULL) → 4320_0_TEST_GE(x1[8], +(x3[8], 1), x2[8])
COND_4320_0_TEST_GE1(TRUE, x1[7], x3[7], x2[7], x4[7]) → 4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])
COND_4320_0_TEST_GE1(TRUE, x1[7], x3[7], x2[7], x4[7]) → 4356_1_TEST_INVOKEMETHOD(4356_0_bubble_Load(x4[7]), x1[7], x2[7], x3[7], x4[7])
4320_0_TEST_GE(x1[6], x3[6], x2[6]) → COND_4320_0_TEST_GE1(&&(<(x3[6], x2[6]), <(x1[6], 3)), x1[6], x3[6], x2[6], x4[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 |
Boolean, Integer
(6) -> (7), if (x3[6] < x2[6] && x1[6] < 3 ∧x1[6] →* x1[7]∧x3[6] →* x3[7]∧x2[6] →* x2[7]∧x4[6] →* x4[7])
Generated 21 rules for P and 0 rules for R.
P rules:
1177_0_mk_Inc(EOS(STATIC_1177), i355, o403, i355) → 1183_0_mk_LE(EOS(STATIC_1183), +(i355, -1), o403, i355)
1183_0_mk_LE(EOS(STATIC_1183), i365, o403, i381) → 1187_0_mk_LE(EOS(STATIC_1187), i365, o403, i381)
1187_0_mk_LE(EOS(STATIC_1187), i365, o403, i381) → 1191_0_mk_New(EOS(STATIC_1191), i365, o403) | >(i381, 0)
1191_0_mk_New(EOS(STATIC_1191), i365, o403) → 1198_0_mk_Duplicate(EOS(STATIC_1198), i365, o403, java.lang.Object(List(EOC)))
1198_0_mk_Duplicate(EOS(STATIC_1198), i365, o403, java.lang.Object(List(EOC))) → 1205_0_mk_Load(EOS(STATIC_1205), i365, o403, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)))
1205_0_mk_Load(EOS(STATIC_1205), i365, o403, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 1213_0_mk_Load(EOS(STATIC_1213), i365, o403, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365)
1213_0_mk_Load(EOS(STATIC_1213), i365, o403, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365) → 1220_0_mk_InvokeMethod(EOS(STATIC_1220), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403)
1220_0_mk_InvokeMethod(EOS(STATIC_1220), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403) → 1225_0_<init>_Load(EOS(STATIC_1225), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), i365, o403)
1225_0_<init>_Load(EOS(STATIC_1225), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), i365, o403) → 1237_0_<init>_InvokeMethod(EOS(STATIC_1237), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)))
1237_0_<init>_InvokeMethod(EOS(STATIC_1237), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC))) → 1241_0_<init>_Load(EOS(STATIC_1241), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), i365, o403)
1241_0_<init>_Load(EOS(STATIC_1241), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), i365, o403) → 1247_0_<init>_Load(EOS(STATIC_1247), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)))
1247_0_<init>_Load(EOS(STATIC_1247), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC))) → 1254_0_<init>_FieldAccess(EOS(STATIC_1254), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), o403, java.lang.Object(List(EOC)), i365)
1254_0_<init>_FieldAccess(EOS(STATIC_1254), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), o403, java.lang.Object(List(EOC)), i365) → 1260_0_<init>_Load(EOS(STATIC_1260), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), o403)
1260_0_<init>_Load(EOS(STATIC_1260), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), o403) → 1266_0_<init>_Load(EOS(STATIC_1266), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, o403, java.lang.Object(List(EOC)))
1266_0_<init>_Load(EOS(STATIC_1266), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, o403, java.lang.Object(List(EOC))) → 1273_0_<init>_FieldAccess(EOS(STATIC_1273), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), o403)
1273_0_<init>_FieldAccess(EOS(STATIC_1273), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403, java.lang.Object(List(EOC)), o403) → 1281_0_<init>_Return(EOS(STATIC_1281), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403)
1281_0_<init>_Return(EOS(STATIC_1281), i365, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i365, o403) → 1285_0_mk_Store(EOS(STATIC_1285), i365, java.lang.Object(List(EOC)))
1285_0_mk_Store(EOS(STATIC_1285), i365, java.lang.Object(List(EOC))) → 1291_0_mk_JMP(EOS(STATIC_1291), i365, java.lang.Object(List(EOC)))
1291_0_mk_JMP(EOS(STATIC_1291), i365, java.lang.Object(List(EOC))) → 1297_0_mk_Load(EOS(STATIC_1297), i365, java.lang.Object(List(EOC)))
1297_0_mk_Load(EOS(STATIC_1297), i365, java.lang.Object(List(EOC))) → 1172_0_mk_Load(EOS(STATIC_1172), i365, java.lang.Object(List(EOC)))
1172_0_mk_Load(EOS(STATIC_1172), i355, o403) → 1177_0_mk_Inc(EOS(STATIC_1177), i355, o403, i355)
R rules:
Combined rules. Obtained 1 conditional rules for P and 0 conditional rules for R.
P rules:
1177_0_mk_Inc(EOS(STATIC_1177), x0, x1, x0) → 1177_0_mk_Inc(EOS(STATIC_1177), +(x0, -1), java.lang.Object(List(EOC)), +(x0, -1)) | >(x0, 0)
R rules:
Filtered ground terms:
1177_0_mk_Inc(x1, x2, x3, x4) → 1177_0_mk_Inc(x2, x3, x4)
List(x1) → List
java.lang.Object(x1) → java.lang.Object
EOS(x1) → EOS
Cond_1177_0_mk_Inc(x1, x2, x3, x4, x5) → Cond_1177_0_mk_Inc(x1, x3, x4, x5)
Filtered duplicate args:
1177_0_mk_Inc(x1, x2, x3) → 1177_0_mk_Inc(x2, x3)
Cond_1177_0_mk_Inc(x1, x2, x3, x4) → Cond_1177_0_mk_Inc(x1, x3, x4)
Filtered unneeded arguments:
Cond_1177_0_mk_Inc(x1, x2, x3) → Cond_1177_0_mk_Inc(x1, x3)
1177_0_mk_Inc(x1, x2) → 1177_0_mk_Inc(x2)
Combined rules. Obtained 1 conditional rules for P and 0 conditional rules for R.
P rules:
1177_0_mk_Inc(x0) → 1177_0_mk_Inc(+(x0, -1)) | >(x0, 0)
R rules:
Finished conversion. Obtained 2 rules for P and 0 rules for R. System has predefined symbols.
P rules:
1177_0_MK_INC(x0) → COND_1177_0_MK_INC(>(x0, 0), x0)
COND_1177_0_MK_INC(TRUE, x0) → 1177_0_MK_INC(+(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] ⇒ 1177_0_MK_INC(x0[0])≥NonInfC∧1177_0_MK_INC(x0[0])≥COND_1177_0_MK_INC(>(x0[0], 0), x0[0])∧(UIncreasing(COND_1177_0_MK_INC(>(x0[0], 0), x0[0])), ≥))
(2) (>(x0[0], 0)=TRUE ⇒ 1177_0_MK_INC(x0[0])≥NonInfC∧1177_0_MK_INC(x0[0])≥COND_1177_0_MK_INC(>(x0[0], 0), x0[0])∧(UIncreasing(COND_1177_0_MK_INC(>(x0[0], 0), x0[0])), ≥))
(3) (x0[0] + [-1] ≥ 0 ⇒ (UIncreasing(COND_1177_0_MK_INC(>(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_1177_0_MK_INC(>(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_1177_0_MK_INC(>(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_1177_0_MK_INC(>(x0[0], 0), x0[0])), ≥)∧[(-1)Bound*bni_8 + (2)bni_8] + [(2)bni_8]x0[0] ≥ 0∧[(-1)bso_9] ≥ 0)
(7) (COND_1177_0_MK_INC(TRUE, x0[1])≥NonInfC∧COND_1177_0_MK_INC(TRUE, x0[1])≥1177_0_MK_INC(+(x0[1], -1))∧(UIncreasing(1177_0_MK_INC(+(x0[1], -1))), ≥))
(8) ((UIncreasing(1177_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(9) ((UIncreasing(1177_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(10) ((UIncreasing(1177_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(11) ((UIncreasing(1177_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧0 = 0∧[2 + (-1)bso_11] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(1177_0_MK_INC(x1)) = [2]x1
POL(COND_1177_0_MK_INC(x1, x2)) = [2]x2
POL(>(x1, x2)) = [-1]
POL(0) = 0
POL(+(x1, x2)) = x1 + x2
POL(-1) = [-1]
COND_1177_0_MK_INC(TRUE, x0[1]) → 1177_0_MK_INC(+(x0[1], -1))
1177_0_MK_INC(x0[0]) → COND_1177_0_MK_INC(>(x0[0], 0), x0[0])
1177_0_MK_INC(x0[0]) → COND_1177_0_MK_INC(>(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
Generated 21 rules for P and 0 rules for R.
P rules:
877_0_mk_Inc(EOS(STATIC_877), i211, o220, i211) → 881_0_mk_LE(EOS(STATIC_881), +(i211, -1), o220, i211)
881_0_mk_LE(EOS(STATIC_881), i218, o220, i228) → 884_0_mk_LE(EOS(STATIC_884), i218, o220, i228)
884_0_mk_LE(EOS(STATIC_884), i218, o220, i228) → 889_0_mk_New(EOS(STATIC_889), i218, o220) | >(i228, 0)
889_0_mk_New(EOS(STATIC_889), i218, o220) → 894_0_mk_Duplicate(EOS(STATIC_894), i218, o220, java.lang.Object(List(EOC)))
894_0_mk_Duplicate(EOS(STATIC_894), i218, o220, java.lang.Object(List(EOC))) → 899_0_mk_Load(EOS(STATIC_899), i218, o220, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)))
899_0_mk_Load(EOS(STATIC_899), i218, o220, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 903_0_mk_Load(EOS(STATIC_903), i218, o220, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218)
903_0_mk_Load(EOS(STATIC_903), i218, o220, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218) → 907_0_mk_InvokeMethod(EOS(STATIC_907), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220)
907_0_mk_InvokeMethod(EOS(STATIC_907), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220) → 909_0_<init>_Load(EOS(STATIC_909), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), i218, o220)
909_0_<init>_Load(EOS(STATIC_909), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), i218, o220) → 914_0_<init>_InvokeMethod(EOS(STATIC_914), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)))
914_0_<init>_InvokeMethod(EOS(STATIC_914), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC))) → 917_0_<init>_Load(EOS(STATIC_917), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), i218, o220)
917_0_<init>_Load(EOS(STATIC_917), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), i218, o220) → 920_0_<init>_Load(EOS(STATIC_920), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)))
920_0_<init>_Load(EOS(STATIC_920), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC))) → 925_0_<init>_FieldAccess(EOS(STATIC_925), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), o220, java.lang.Object(List(EOC)), i218)
925_0_<init>_FieldAccess(EOS(STATIC_925), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), o220, java.lang.Object(List(EOC)), i218) → 930_0_<init>_Load(EOS(STATIC_930), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), o220)
930_0_<init>_Load(EOS(STATIC_930), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), o220) → 935_0_<init>_Load(EOS(STATIC_935), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, o220, java.lang.Object(List(EOC)))
935_0_<init>_Load(EOS(STATIC_935), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, o220, java.lang.Object(List(EOC))) → 943_0_<init>_FieldAccess(EOS(STATIC_943), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), o220)
943_0_<init>_FieldAccess(EOS(STATIC_943), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220, java.lang.Object(List(EOC)), o220) → 951_0_<init>_Return(EOS(STATIC_951), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220)
951_0_<init>_Return(EOS(STATIC_951), i218, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i218, o220) → 958_0_mk_Store(EOS(STATIC_958), i218, java.lang.Object(List(EOC)))
958_0_mk_Store(EOS(STATIC_958), i218, java.lang.Object(List(EOC))) → 966_0_mk_JMP(EOS(STATIC_966), i218, java.lang.Object(List(EOC)))
966_0_mk_JMP(EOS(STATIC_966), i218, java.lang.Object(List(EOC))) → 976_0_mk_Load(EOS(STATIC_976), i218, java.lang.Object(List(EOC)))
976_0_mk_Load(EOS(STATIC_976), i218, java.lang.Object(List(EOC))) → 872_0_mk_Load(EOS(STATIC_872), i218, java.lang.Object(List(EOC)))
872_0_mk_Load(EOS(STATIC_872), i211, o220) → 877_0_mk_Inc(EOS(STATIC_877), i211, o220, i211)
R rules:
Combined rules. Obtained 1 conditional rules for P and 0 conditional rules for R.
P rules:
877_0_mk_Inc(EOS(STATIC_877), x0, x1, x0) → 877_0_mk_Inc(EOS(STATIC_877), +(x0, -1), java.lang.Object(List(EOC)), +(x0, -1)) | >(x0, 0)
R rules:
Filtered ground terms:
877_0_mk_Inc(x1, x2, x3, x4) → 877_0_mk_Inc(x2, x3, x4)
List(x1) → List
java.lang.Object(x1) → java.lang.Object
EOS(x1) → EOS
Cond_877_0_mk_Inc(x1, x2, x3, x4, x5) → Cond_877_0_mk_Inc(x1, x3, x4, x5)
Filtered duplicate args:
877_0_mk_Inc(x1, x2, x3) → 877_0_mk_Inc(x2, x3)
Cond_877_0_mk_Inc(x1, x2, x3, x4) → Cond_877_0_mk_Inc(x1, x3, x4)
Filtered unneeded arguments:
Cond_877_0_mk_Inc(x1, x2, x3) → Cond_877_0_mk_Inc(x1, x3)
877_0_mk_Inc(x1, x2) → 877_0_mk_Inc(x2)
Combined rules. Obtained 1 conditional rules for P and 0 conditional rules for R.
P rules:
877_0_mk_Inc(x0) → 877_0_mk_Inc(+(x0, -1)) | >(x0, 0)
R rules:
Finished conversion. Obtained 2 rules for P and 0 rules for R. System has predefined symbols.
P rules:
877_0_MK_INC(x0) → COND_877_0_MK_INC(>(x0, 0), x0)
COND_877_0_MK_INC(TRUE, x0) → 877_0_MK_INC(+(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] ⇒ 877_0_MK_INC(x0[0])≥NonInfC∧877_0_MK_INC(x0[0])≥COND_877_0_MK_INC(>(x0[0], 0), x0[0])∧(UIncreasing(COND_877_0_MK_INC(>(x0[0], 0), x0[0])), ≥))
(2) (>(x0[0], 0)=TRUE ⇒ 877_0_MK_INC(x0[0])≥NonInfC∧877_0_MK_INC(x0[0])≥COND_877_0_MK_INC(>(x0[0], 0), x0[0])∧(UIncreasing(COND_877_0_MK_INC(>(x0[0], 0), x0[0])), ≥))
(3) (x0[0] + [-1] ≥ 0 ⇒ (UIncreasing(COND_877_0_MK_INC(>(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_877_0_MK_INC(>(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_877_0_MK_INC(>(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_877_0_MK_INC(>(x0[0], 0), x0[0])), ≥)∧[(-1)Bound*bni_8 + (2)bni_8] + [(2)bni_8]x0[0] ≥ 0∧[(-1)bso_9] ≥ 0)
(7) (COND_877_0_MK_INC(TRUE, x0[1])≥NonInfC∧COND_877_0_MK_INC(TRUE, x0[1])≥877_0_MK_INC(+(x0[1], -1))∧(UIncreasing(877_0_MK_INC(+(x0[1], -1))), ≥))
(8) ((UIncreasing(877_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(9) ((UIncreasing(877_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(10) ((UIncreasing(877_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(11) ((UIncreasing(877_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧0 = 0∧[2 + (-1)bso_11] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(877_0_MK_INC(x1)) = [2]x1
POL(COND_877_0_MK_INC(x1, x2)) = [2]x2
POL(>(x1, x2)) = [-1]
POL(0) = 0
POL(+(x1, x2)) = x1 + x2
POL(-1) = [-1]
COND_877_0_MK_INC(TRUE, x0[1]) → 877_0_MK_INC(+(x0[1], -1))
877_0_MK_INC(x0[0]) → COND_877_0_MK_INC(>(x0[0], 0), x0[0])
877_0_MK_INC(x0[0]) → COND_877_0_MK_INC(>(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
Generated 21 rules for P and 0 rules for R.
P rules:
487_0_mk_Inc(EOS(STATIC_487), i72, o67, i72) → 489_0_mk_LE(EOS(STATIC_489), +(i72, -1), o67, i72)
489_0_mk_LE(EOS(STATIC_489), i75, o67, i79) → 493_0_mk_LE(EOS(STATIC_493), i75, o67, i79)
493_0_mk_LE(EOS(STATIC_493), i75, o67, i79) → 497_0_mk_New(EOS(STATIC_497), i75, o67) | >(i79, 0)
497_0_mk_New(EOS(STATIC_497), i75, o67) → 501_0_mk_Duplicate(EOS(STATIC_501), i75, o67, java.lang.Object(List(EOC)))
501_0_mk_Duplicate(EOS(STATIC_501), i75, o67, java.lang.Object(List(EOC))) → 504_0_mk_Load(EOS(STATIC_504), i75, o67, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)))
504_0_mk_Load(EOS(STATIC_504), i75, o67, java.lang.Object(List(EOC)), java.lang.Object(List(EOC))) → 509_0_mk_Load(EOS(STATIC_509), i75, o67, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75)
509_0_mk_Load(EOS(STATIC_509), i75, o67, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75) → 512_0_mk_InvokeMethod(EOS(STATIC_512), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67)
512_0_mk_InvokeMethod(EOS(STATIC_512), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67) → 516_0_<init>_Load(EOS(STATIC_516), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), i75, o67)
516_0_<init>_Load(EOS(STATIC_516), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), i75, o67) → 522_0_<init>_InvokeMethod(EOS(STATIC_522), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)))
522_0_<init>_InvokeMethod(EOS(STATIC_522), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC))) → 527_0_<init>_Load(EOS(STATIC_527), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), i75, o67)
527_0_<init>_Load(EOS(STATIC_527), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), i75, o67) → 529_0_<init>_Load(EOS(STATIC_529), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)))
529_0_<init>_Load(EOS(STATIC_529), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC))) → 534_0_<init>_FieldAccess(EOS(STATIC_534), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), o67, java.lang.Object(List(EOC)), i75)
534_0_<init>_FieldAccess(EOS(STATIC_534), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), o67, java.lang.Object(List(EOC)), i75) → 539_0_<init>_Load(EOS(STATIC_539), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), o67)
539_0_<init>_Load(EOS(STATIC_539), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), o67) → 543_0_<init>_Load(EOS(STATIC_543), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, o67, java.lang.Object(List(EOC)))
543_0_<init>_Load(EOS(STATIC_543), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, o67, java.lang.Object(List(EOC))) → 546_0_<init>_FieldAccess(EOS(STATIC_546), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), o67)
546_0_<init>_FieldAccess(EOS(STATIC_546), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67, java.lang.Object(List(EOC)), o67) → 554_0_<init>_Return(EOS(STATIC_554), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67)
554_0_<init>_Return(EOS(STATIC_554), i75, java.lang.Object(List(EOC)), java.lang.Object(List(EOC)), i75, o67) → 560_0_mk_Store(EOS(STATIC_560), i75, java.lang.Object(List(EOC)))
560_0_mk_Store(EOS(STATIC_560), i75, java.lang.Object(List(EOC))) → 566_0_mk_JMP(EOS(STATIC_566), i75, java.lang.Object(List(EOC)))
566_0_mk_JMP(EOS(STATIC_566), i75, java.lang.Object(List(EOC))) → 576_0_mk_Load(EOS(STATIC_576), i75, java.lang.Object(List(EOC)))
576_0_mk_Load(EOS(STATIC_576), i75, java.lang.Object(List(EOC))) → 482_0_mk_Load(EOS(STATIC_482), i75, java.lang.Object(List(EOC)))
482_0_mk_Load(EOS(STATIC_482), i72, o67) → 487_0_mk_Inc(EOS(STATIC_487), i72, o67, i72)
R rules:
Combined rules. Obtained 1 conditional rules for P and 0 conditional rules for R.
P rules:
487_0_mk_Inc(EOS(STATIC_487), x0, x1, x0) → 487_0_mk_Inc(EOS(STATIC_487), +(x0, -1), java.lang.Object(List(EOC)), +(x0, -1)) | >(x0, 0)
R rules:
Filtered ground terms:
487_0_mk_Inc(x1, x2, x3, x4) → 487_0_mk_Inc(x2, x3, x4)
List(x1) → List
java.lang.Object(x1) → java.lang.Object
EOS(x1) → EOS
Cond_487_0_mk_Inc(x1, x2, x3, x4, x5) → Cond_487_0_mk_Inc(x1, x3, x4, x5)
Filtered duplicate args:
487_0_mk_Inc(x1, x2, x3) → 487_0_mk_Inc(x2, x3)
Cond_487_0_mk_Inc(x1, x2, x3, x4) → Cond_487_0_mk_Inc(x1, x3, x4)
Filtered unneeded arguments:
Cond_487_0_mk_Inc(x1, x2, x3) → Cond_487_0_mk_Inc(x1, x3)
487_0_mk_Inc(x1, x2) → 487_0_mk_Inc(x2)
Combined rules. Obtained 1 conditional rules for P and 0 conditional rules for R.
P rules:
487_0_mk_Inc(x0) → 487_0_mk_Inc(+(x0, -1)) | >(x0, 0)
R rules:
Finished conversion. Obtained 2 rules for P and 0 rules for R. System has predefined symbols.
P rules:
487_0_MK_INC(x0) → COND_487_0_MK_INC(>(x0, 0), x0)
COND_487_0_MK_INC(TRUE, x0) → 487_0_MK_INC(+(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] ⇒ 487_0_MK_INC(x0[0])≥NonInfC∧487_0_MK_INC(x0[0])≥COND_487_0_MK_INC(>(x0[0], 0), x0[0])∧(UIncreasing(COND_487_0_MK_INC(>(x0[0], 0), x0[0])), ≥))
(2) (>(x0[0], 0)=TRUE ⇒ 487_0_MK_INC(x0[0])≥NonInfC∧487_0_MK_INC(x0[0])≥COND_487_0_MK_INC(>(x0[0], 0), x0[0])∧(UIncreasing(COND_487_0_MK_INC(>(x0[0], 0), x0[0])), ≥))
(3) (x0[0] + [-1] ≥ 0 ⇒ (UIncreasing(COND_487_0_MK_INC(>(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_487_0_MK_INC(>(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_487_0_MK_INC(>(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_487_0_MK_INC(>(x0[0], 0), x0[0])), ≥)∧[(-1)Bound*bni_8 + (2)bni_8] + [(2)bni_8]x0[0] ≥ 0∧[(-1)bso_9] ≥ 0)
(7) (COND_487_0_MK_INC(TRUE, x0[1])≥NonInfC∧COND_487_0_MK_INC(TRUE, x0[1])≥487_0_MK_INC(+(x0[1], -1))∧(UIncreasing(487_0_MK_INC(+(x0[1], -1))), ≥))
(8) ((UIncreasing(487_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(9) ((UIncreasing(487_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(10) ((UIncreasing(487_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧[2 + (-1)bso_11] ≥ 0)
(11) ((UIncreasing(487_0_MK_INC(+(x0[1], -1))), ≥)∧[bni_10] = 0∧0 = 0∧[2 + (-1)bso_11] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(487_0_MK_INC(x1)) = [2]x1
POL(COND_487_0_MK_INC(x1, x2)) = [2]x2
POL(>(x1, x2)) = [-1]
POL(0) = 0
POL(+(x1, x2)) = x1 + x2
POL(-1) = [-1]
COND_487_0_MK_INC(TRUE, x0[1]) → 487_0_MK_INC(+(x0[1], -1))
487_0_MK_INC(x0[0]) → COND_487_0_MK_INC(>(x0[0], 0), x0[0])
487_0_MK_INC(x0[0]) → COND_487_0_MK_INC(>(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