extern int __VERIFIER_nondet_int(void); int foo(int i){ i = 0; while (i < 100) { if (i < 50) { i = i+1; } else { i = i-1; } } return 0; }