void abort() { }; /* * recHanoi.c * * Created on: 17.07.2013 * Author: Stefan Wissert * * Copied from c/termination-numeric/recHanoi02_true-termination.c */ extern int __VERIFIER_nondet_int(); /* * This function returns the optimal amount of steps, * needed to solve the problem for n-disks */ /*@ requires (1); ensures (((\result == 1) || (2 < \result))); @*/ int hanoi(int n) { if (n == 1) { return 1; } return 2 * (hanoi(n-1)) + 1; } int main() { int n = __VERIFIER_nondet_int(); if (n < 1 || n > 31) { return 0; } int result = hanoi(n); if (result >= 0) { return 0; } else { ERROR: {/*@ assert(0); */;abort();} } }