The Halting Problem in the Field - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T07:51:21Z http://stackoverflow.com/feeds/question/235984 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field 29 The Halting Problem in the Field Claudiu 2008-10-25T06:08:25Z 2009-01-23T13:16:09Z <p>When have you ever personally come upon the <b><a href="http://en.wikipedia.org/wiki/Halting_problem" rel="nofollow">halting problem</a></b> in the field? This can be when a co-worker / boss suggested a solution which would violate the fundamental limits of computation, or when you realized yourself that a problem you were trying to solve was, in fact, impossible to solve.</p> <p>The most recent time I came up with it was when studying type checkers. Our class realized that it would be impossible to write a perfect type checker (one that would accept all programs that would run without type errors, and reject all programs that would run with type errors) because this would, in fact, solve the halting problem. Another was when we realized, in the same class, that it would be impossible to determine whether a division would ever occur by zero, in the type-checking stage, because checking whether a number, at run-time, is zero, is also a version of the halting problem.</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/235989#235989 31 Answer by Just Some Guy for The Halting Problem in the Field Just Some Guy 2008-10-25T06:13:45Z 2008-10-25T06:13:45Z <p>I <em>literally</em> got assigned the halting problem, as in "write a monitor plugin to determine whether a host is permanently down". Seriously? OK, so I'll just give it a threshold. "No, because it might come back up afterward."</p> <p>Much theoretical exposition ensued.</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/235999#235999 7 Answer by Jason Cohen for The Halting Problem in the Field Jason Cohen 2008-10-25T06:24:41Z 2008-10-25T06:24:41Z <p>Sophisticated static code analysis can run into the halting problem.</p> <p>For example, if a Java virtual machine can prove that a piece of code will never access an array index out-of-bounds, it can omit that check and run faster. For some code this is possible; as it gets more complex it becomes the halting problem.</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/236019#236019 21 Answer by Michał Kwiatkowski for The Halting Problem in the Field Michał Kwiatkowski 2008-10-25T06:37:51Z 2008-10-25T06:37:51Z <p><a href="http://pythoscope.org" rel="nofollow">The project I'm working on right now</a> has undecidable problems all over it. It's a unit test generator, so in general what it tries to accomplish is to answer the question <em>"what this program does"</em>. Which is an instance of a halting problem. Another problem that came up during development is <em>"are given two (testing) functions the same"</em>? Or even <em>"does the order of those two calls (assertions) matter"</em>?</p> <p>What's interesting about this project is that, even though you can't answer those questions in <strong>all</strong> situations, you <strong>can</strong> find smart solutions that solve the problem 90% of the time, which for this domain is actually very good.</p> <p>Other tools that try to reason about other code, like optimizing compilers/interpreters, static code analysis tools, even refactoring tools, are likely to hit (thus be forced to find workarounds to) the halting problem.</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/236095#236095 2 Answer by Schwern for The Halting Problem in the Field Schwern 2008-10-25T08:22:33Z 2008-10-25T08:22:33Z <p>Perl's testing system maintains a test counter. You either put the number of tests you're going to run at the top of the program, or you declare that you're not going to track it. This guard against your test exiting prematurely, but there are other guards so it's not all that important.</p> <p>Every once in a while somebody tries to write a program to count the number of tests for you. This is, of course, defeated by a simple loop. They plow ahead anyway, doing more and more elaborate tricks to try and detect loops and guess how many iterations there will be and solve the halting problem. Usually they declare that it just has to be "good enough".</p> <p><a href="http://search.cpan.org/perldoc?Test::Count" rel="nofollow">Here's a particularly elaborate example.</a></p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/306833#306833 3 Answer by Mark Bessey for The Halting Problem in the Field Mark Bessey 2008-11-20T20:55:02Z 2008-11-21T22:20:34Z <p>Another common version of this is "we need to eliminate any deadlocks in our multi-threaded code". A perfectly-reasonable request, from the management perspective, but in order to prevent deadlocks in the general case, you have to analyse every possible locking state that the software can get into, which is, no surprise, equivalent to the halting problem.</p> <p>There are ways to partially "solve" deadlocks in a complex system by imposing another layer on top of the locking (like a defined order of acquisition), but these methods are not always applicable.</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/306865#306865 9 Answer by n8wrl for The Halting Problem in the Field n8wrl 2008-11-20T21:12:02Z 2008-12-03T12:42:34Z <p>Many many moons ago I was assisting a consultant for our company who was impelmenting a very complex rail system to move baskets of metal parts in and out of a 1500-degree blast furnace. The track itself was a fairly complex 'mini-railyard' on the shop floor that intersected itself in a couple of places. Several motorized pallets would shuttle baskets of parts around according to a schedule. It was very important that the furnace doors were open for as short a time as possible.</p> <p>Since the plant was in full production, the consultant was unable to run his software in 'real time' to test his scheduling algorithms. Instead, he wrote a pretty, graphic-y simulator. As we watched virtual pallets move around on his on-screen track layout, I asked "how will you know if you have any scheduling conflicts?"</p> <p>His quick answer, "Easy - the simulation will never stop."</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/310492#310492 4 Answer by joeld42 for The Halting Problem in the Field joeld42 2008-11-21T22:59:17Z 2008-11-21T22:59:17Z <p>This is still a problem for shaders in GPU applications. If a shader has an infinite loop (or a very long calculation), should the driver (after some time limit) stop it, kill the fragment, or just let it run? For games and other commercial stuff, the former is probably what you want, but for scientific/GPU computing, the latter is what you want. Worse, some versions of windows assume that since the graphics driver has been unresponsive for some time, it kills it, which artificially limits the computing power when doing computation on the GPU.</p> <p>There's no API for a application to control how the driver should behave or set the timeout or something, and there's certainly no way for the driver to tell if your shader is going to finish or not.</p> <p>I don't know if this situation has improved recently, but I'd like to know.</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/320066#320066 0 Answer by Jaywalker for The Halting Problem in the Field Jaywalker 2008-11-26T08:36:07Z 2008-11-26T08:36:07Z <p>I was once working on an integration project in the ATM (Automated Teller Machines) domain. The client requested me to generate a report from my system for transactions sent by the country switch which were not received by my system!!</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/334759#334759 8 Answer by Earwicker for The Halting Problem in the Field Earwicker 2008-12-02T17:27:44Z 2008-12-04T10:22:46Z <p><strong>Example 1. How many pages in my report?</strong></p> <p>When I was learning to program I played with making a tool to print out pretty reports from data. Obviously I wanted it to be really flexible and powerful so it would be the report generator to end all report generators.</p> <p>The report definition ended up being so flexible that it was Turing complete. It could look at variables, choose between alternatives, use loops to repeat things.</p> <p>I defined a built-in variable N, the number of pages in the report instance, so you could put a string that said "page n of N" on each page. I did two passes, the first one to count the pages (during which N was set to zero), and the second to actually generate them, using the N obtained from the first pass.</p> <p>Sometimes the first pass would compute N, and then the second pass would generate a different number of pages (because now the non-zero N would change what the report did). I tried doing passes iteratively until the N settled down. Then I realised this was hopeless because what if it didn't settle down?</p> <p>This then leads to the question, "Can I at least detect and warn the user if the iteration is never going to settle on a stable value for the number of pages their report produces?" Fortunately by this time I had become interested in reading about Turing, Godel, computability etc. and made the connection.</p> <p>Years later I noticed that MS Access sometimes prints "Page 6 of 5", which is a truly marvelous thing.</p> <p><strong>Example 2: C++ compilers</strong></p> <p>The compilation process involves expanding templates. Template definitions can be selected from multiple specialisations (good enough to serve as a "cond") and they can also be recursive. So it's a Turing complete (pure functional) meta-system, in which the template definitions are the language, the types are the values, and the compiler is really an interpreter. This was an accident.</p> <p>Consequently it is not possible to examine any given C++ program and say whether the compiler could in principle terminate with a successful compilation of the program. </p> <p>Compiler vendors get around this by limiting the stack depth of template recursive. You can adjust the depth in g++.</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/340216#340216 0 Answer by zarawesome for The Halting Problem in the Field zarawesome 2008-12-04T10:59:52Z 2008-12-04T10:59:52Z <p>"How can you assure me your code is 100% free of bugs?"</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/472743#472743 0 Answer by David Schmitt for The Halting Problem in the Field David Schmitt 2009-01-23T12:43:40Z 2009-01-23T12:43:40Z <p>See the "<a href="http://stackoverflow.com/questions/472700/testing-for-a-deadlock-with-nunit">Testing for a deadlock with NUnit</a>" question.</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/472836#472836 10 Answer by Ferruccio for The Halting Problem in the Field Ferruccio 2009-01-23T13:16:09Z 2009-01-23T13:16:09Z <p>Years ago, I remember reading a review (in Byte magazine, I believe) of a product called Basic Infinite Loop Finder or BILF. BILF was supposed to scan your Microsoft Basic source code and find any loops which didn't terminate. It claimed to be able any find any infinite loops in the code.</p> <p>The reviewer was savvy enough to point out that for that program to work in all cases, it would have to solve the halting problem and went so far as to provide a mathematical proof of why it couldn't work in all cases.</p> <p>In the next issue, they published a letter from a company representative explaining that the problem would be fixed in the next release.</p>