Detecting infinite loop in brainfuck program - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:59:05Z http://stackoverflow.com/feeds/question/367571 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/367571/detecting-infinite-loop-in-brainfuck-program 6 Detecting infinite loop in brainfuck program sundar 2008-12-15T05:49:53Z 2008-12-24T11:41:32Z <p>I have written a simple <a href="http://en.wikipedia.org/wiki/Brainfuck" rel="nofollow">brainfuck</a> interpreter in MATLAB script language. It is fed random bf programs to execute (as part of a genetic algorithm project). The problem I face is, the program turns out to have an infinite loop in a sizeable number of cases, and hence the GA gets stuck at the point.<br /> So, I need a mechanism to detect infinite loops and avoid executing that code in bf.<br /> One obvious (trivial) case is when I have</p> <pre><code>[] </code></pre> <p>I can detect this and refuse to run that program.<br /> For the non-trivial cases, I figured out that the basic idea is: to determine how one iteration of the loop changes the current cell. If the change is negative, we're eventually going to reach 0, so it's a finite loop. Otherwise, if the change is non-negative, it's an infinite loop.<br /> Implementing this is easy for the case of a single loop, but with nested loops it becomes very complicated. For example, (in what follows (1) refers to contents of cell 1, etc. )</p> <pre><code>++++ Put 4 in 1st cell (1) &gt;+++ Put 3 in (2) &lt;[ While( (1) is non zero) -- Decrease (1) by 2 &gt;[ While( (2) is non zero) - Decrement (2) &lt;+ Increment (1) &gt;] (2) would be 0 at this point +++ Increase (2) by 3 making (2) = 3 &lt;] (1) was decreased by 2 and then increased by 3, so net effect is increment </code></pre> <p>and hence the code runs on and on. A naive check of the number of +'s and -'s done on cell 1, however, would say the number of -'s is more, so would not detect the infinite loop.<br /> Can anyone think of a good algorithm to detect infinite loops, given arbitrary nesting of arbitrary number of loops in bf?</p> <p>EDIT: I do know that the halting problem is unsolvable in general, but I was not sure whether there did not exist special case exceptions. Like, maybe Matlab might function as a Super Turing machine able to determine the halting of the bf program. I might be horribly wrong, but if so, I would like to know exactly how and why. </p> <p>SECOND EDIT: I have written what I purport to be infinite loop detector. It probably misses some edge cases (or less probably, somehow escapes Mr. Turing's clutches), but seems to work for me as of now. In pseudocode form, here it goes:</p> <pre><code>subroutine bfexec(bfprogram) begin Looping through the bfprogram, If(current character is '[') Find the corresponding ']' Store the code between the two brackets in, say, 'subprog' Save the value of the current cell in oldval Call bfexec recursively with subprog Save the value of the current cell in newval If(newval &gt;= oldval) Raise an 'infinite loop' error and exit EndIf /* Do other character's processings */ EndIf EndLoop end </code></pre> http://stackoverflow.com/questions/367571/detecting-infinite-loop-in-brainfuck-program/367574#367574 38 Answer by dancavallaro for Detecting infinite loop in brainfuck program dancavallaro 2008-12-15T05:52:01Z 2008-12-15T05:52:01Z <p>Alan Turing would like to have a word with you.</p> <p><a href="http://en.wikipedia.org/wiki/Halting_problem" rel="nofollow">http://en.wikipedia.org/wiki/Halting_problem</a></p> http://stackoverflow.com/questions/367571/detecting-infinite-loop-in-brainfuck-program/367579#367579 0 Answer by coobird for Detecting infinite loop in brainfuck program coobird 2008-12-15T05:57:45Z 2008-12-15T08:32:49Z <p>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.</p> <p>As the conditional execution of portions of the program depends on the execution state of the program, it will be difficult to know the particular state of the program without actually executing the program.</p> <p>If you don't <em>require</em> 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.</p> http://stackoverflow.com/questions/367571/detecting-infinite-loop-in-brainfuck-program/367587#367587 9 Answer by shsmurfy for Detecting infinite loop in brainfuck program shsmurfy 2008-12-15T06:04:31Z 2008-12-15T06:04:31Z <p>Let's say you did write a program that could detect whether this program would run in an infinite loop. Let's say for the sake of simplicity that this program was written in brainfuck to analyze brainfuck programs (though this is not a precondition of the following proof, because any language can emulate brainfuck and brainfuck can emulate any language). </p> <p>Now let's say you extend the checker program to make a new program. This new program exits immediately when its input loops indefinitely, and loops forever when its input exits at some point.</p> <p>If you input this new program into itself, what will the results be?</p> <p>If this program loops forever when run, than by its own definition it should exit immediately when run with itself as input. And vice versa. The checker program cannot possibly exist, because its very existence implies a contradiction.</p> <p>As has been mentioned before, you are essentially restating the famous halting problem: <a href="http://en.wikipedia.org/wiki/Halting_problem" rel="nofollow">http://en.wikipedia.org/wiki/Halting_problem</a></p> <p>Ed. I want to make clear that the above disproof is not my own, but is essentially the famous disproof Alan Turing gave back in 1936.</p> http://stackoverflow.com/questions/367571/detecting-infinite-loop-in-brainfuck-program/367628#367628 2 Answer by flolo for Detecting infinite loop in brainfuck program flolo 2008-12-15T06:52:10Z 2008-12-15T06:52:10Z <p>As already mentioned this is the Halting Problem. But in your case there might be a solution: The Halting Problem is considering is about the Turing machine, which has unlimited memory.</p> <p>In case you know that you have a upper limit of memory (e.g. you know you dont use more than 10 memory cells), you can execute your programm and stop it. The idea is that the computation space bounds computation time (as you cant write more than one cell at one step). After you executed as much steps as you can have different memory configurations, you can break. E.g. if you have 3 cells, with 256 conditions, you can have at most 3^256 different states, and so you can stop after executing that many steps. But be careful, there are implicit cells, like the instruction pointer and the registers. You do it even shorter, if you save every state configuration and as soon as you detect one, which you already had, you have an infite loop. This approach is definitly much better in the run time, but therefor needs much more space (here it might be suitable to hash the configurations).</p> http://stackoverflow.com/questions/367571/detecting-infinite-loop-in-brainfuck-program/367758#367758 4 Answer by eed3si9n for Detecting infinite loop in brainfuck program eed3si9n 2008-12-15T08:22:03Z 2008-12-15T08:22:03Z <p>Infinite loop cannot be detected, but you can detect if the program is taking too much time.</p> <p>Implement a timeout by incrementing a counter every time you run a command (e.g. <code>&lt;</code>, <code>&gt;</code>, <code>+</code>, <code>-</code>). When the counter reaches some large number, which you set by observation, you can say that it takes very long time to execute your program. For your purpose, "very long" and infinite is a good-enough approximation.</p> http://stackoverflow.com/questions/367571/detecting-infinite-loop-in-brainfuck-program/367779#367779 2 Answer by Aur Saraf for Detecting infinite loop in brainfuck program Aur Saraf 2008-12-15T08:36:51Z 2008-12-15T08:36:51Z <p>State in bf is a single array of chars.</p> <p>If I were you, I'd take a hash of the bf interpreter state on every "]" (or once in rand(1, 100) "]"s*) and assert that the set of hashes is unique.</p> <p>The second (or more) time I see a certain hash, I save the whole state aside.</p> <p>The third (or more) time I see a certain hash, I compare the whole state to the saved one(s) and if there's a match, I quit.</p> <p>On every input command ('.', IIRC) I reset my saved states and list of hashes.</p> <p>An optimization is to only hash the part of state that was touched.</p> <p>I haven't solved the halting problem - I'm detecting infinite loops <em>while running</em> the program.</p> <p>*The rand is to make the check independent of loop period</p> http://stackoverflow.com/questions/367571/detecting-infinite-loop-in-brainfuck-program/367945#367945 5 Answer by Svante for Detecting infinite loop in brainfuck program Svante 2008-12-15T10:21:26Z 2008-12-15T10:21:26Z <p>When I used linear genetic programming, I just used an upper bound for the number of instructions a single program was allowed to do in its lifetime. I think that this is sensible in two ways: I cannot really solve the halting problem anyway, and programs that take too long to compute are not worthy of getting more time anyway.</p> http://stackoverflow.com/questions/367571/detecting-infinite-loop-in-brainfuck-program/368031#368031 3 Answer by Patrick for Detecting infinite loop in brainfuck program Patrick 2008-12-15T11:03:03Z 2008-12-15T11:03:03Z <p>I have created a truly marvelous program to do this, which this textbox is too narrow to contain.</p>