I want to generate lots of small programs written in a very simple C-like language (using unbounded integers only, and with no user input). If a program runs too long, send it to a tool that checks for non-termination with an answer of yes, no, or unknown. Some example programs are:
int x=1; while(x>0) { x=x+x; x=x*x; }
int x=1; while(x>0) { while(x>0) while(x>0) while(x>0) x=0; x=1; }
int x=0, y=1; while(y>0) { y=y+y; while(x>0) x=1; }
What tools are suitable for showing termination? The tool should allow for automation, as I need to analyse thousands of programs. The tool should also be fast.