/* * Date: 2014-06-08 * Author: leike@informatik.uni-freiburg.de * * * This is Example 3.6 from the test suit used in * * Termination Proofs for Linear Simple Loops. * Hong Yi Chen, Shaked Flur, and Supratik Mukhopadhyay. * SAS 2012. * * The test suite is available at the following URL. * https://tigerbytes2.lsu.edu/users/hchen11/lsl/LSL_benchmark.txt * * Comment: non-terminating (for x=-1, y=1, z=-1) */ extern int __VERIFIER_nondet_int(); int main() { int x = __VERIFIER_nondet_int(); int y = __VERIFIER_nondet_int(); int z = __VERIFIER_nondet_int(); while (x < 0) { x = x + z; z = -2*y; y = y + 1; } return 0; }