show/hide this revision's text 3 edited body

Off the top of my head (and I could be wrong), I would think it would be a little bit difficult to detect whether or not a program has an infinite loop without actually executing the program itself.

As the conditional execution of portions of the program depends on the executiob execution state of the program, it will be difficult to know the particular state of the program without actually executing the program.

If you don't require that a program with an infinite loop be executed, you could try having an "instructions executed" counter, and only execute a finite number of instructions. This way, if a program does have an infinite loop, the interpreter can terminate the program which is stuck in an infinite loop.

show/hide this revision's text 2 added 208 characters in body

Off the top of my head (and I could be wrong), I would think it would be a little bit difficult to detect whether or not a program has an indefinite infinite loop without actually executing the program itself.

As the conditional execution of portions of the program depends on the executiob state of the program, it will be difficult to know the particular state of the program without actually executing the program.

If you don't require that a program with an indefinite infinite loop be executed, you could try having an "instructions executed" counter, and only execute a finite number of instructions. This way, if a program does have an indefinite infinite loop, the interpreter can terminate the program which is stuck in an indefinite infinite loop.

show/hide this revision's text 1

Off the top of my head (and I could be wrong), I would think it would be a little bit difficult to detect whether or not a program has an indefinite loop without actually executing the program itself.

If you don't require that a program with an indefinite loop be executed, you could try having an "instructions executed" counter, and only execute a finite number of instructions. This way, if a program does have an indefinite loop, the interpreter can terminate the program which is stuck in an indefinite loop.