(0) Obligation:

JBC Problem based on JBC Program:
/**
* A loop using the <tt>continue</tt> statement.
*
* All calls terminate.
*
* Julia + BinTerm prove that all calls terminate
*
* @author <A HREF="mailto:fausto.spoto@univr.it">Fausto Spoto</A>
*/

public class Continue1 {
public static void main(String[] args) {
int i = 0;

while (i < 20) {
i++;
if (i <= 10) continue;
}
}
}

(1) JBCToGraph (SOUND transformation)

Constructed TerminationGraph.

(2) Obligation:

Termination Graph based on JBC Program:
Continue1.main([Ljava/lang/String;)V: Graph of 180 nodes with 0 SCCs.


(3) TerminationGraphToSCCProof (SOUND transformation)

Proven termination by absence of SCCs

(4) TRUE