Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
If you have the parser for the language, you can perform constant folding-based static analysis. – H2CO3 Oct 30 '12 at 21:42

closed as not a real question by Don Roby, DocMax, Lucas, Ragunath Jawahar, VMAtm Oct 31 '12 at 7:25

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

you can try using Pythonect to throw all of the programs through a timer, and if they don't exit within a certain time, do your tests

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.