active questions tagged halting-problem - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T13:22:30Zhttp://stackoverflow.com/feeds/tag/halting-problemhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1635783/iphone-uitableview-row-height-problem0iPhone + UITableView + row height problempratik2009-10-28T08:11:13Z2009-10-28T08:41:12Z
<p>Hi,</p>
<p>I am setting the row height of my UITableView using following code</p>
<p>[tableView setRowHeight: 100.00];</p>
<p>I am using the single line as separator in the UITableView.</p>
<p>Eventhough setting the height above, height of row does not get change.</p>
<p>Please help me</p>
http://stackoverflow.com/questions/1111155/what-exactly-is-the-halting-problem10What exactly is the halting problem?rascher2009-07-10T18:18:42Z2009-09-20T01:31:14Z
<p>Whenever people ask about the halting problem as it pertains to programming, people respond with "If you just add one loop, you've got the halting program and therefore you can't automate <em>task</em>"</p>
<p>Makes sense. If your program has an infinite loop, then when your program is running, you have no way of knowing whether the program is still crunching input, or if it is just looping infinitely.</p>
<p>But some of this seems counter intuitive. What if I was writing a halting problem solver, which takes source code as its input. <code>rascher@localhost$ ./haltingSolver source.c</code></p>
<p>If my code (source.c) looks like this:</p>
<pre><code>for (;;) { /* infinite loop */ }
</code></pre>
<p>It seems like it'd be pretty easy for my program to see this. "Look the loop, and look at the condition. If the condition is just based on literals, and no variables, then you always know the outcome of the loop. If there are variables (eg while (x < 10)), see if those variables are ever modified. If not, then you always know the outcome of the loop."</p>
<p>Granted, these checks would not be trivial (calculating pointer arithmetics, etc) but it does not seem impossible. eg:</p>
<pre><code>int x = 0
while (x < 10) {}
</code></pre>
<p>could be detected. along with - albeit not trivially:</p>
<pre><code>int x = 0
while (x < 10)
{
x++;
if (x == 10)
{
x = 0
}
}
</code></pre>
<p>Now what about user input? That is the kicker, that is what makes a program unpredictable.</p>
<pre><code>int x = 0;
while (x < 10)
{
scanf("%d", &x); /* ignoring infinite scanf loop oddities */
}
</code></pre>
<p>Now my program can say: "If the user enters a 10 or greater, the program will halt. On all other input, it will loop again."</p>
<p>Which means that, even with hundreds of inputs, one <em>ought to</em> be able to list the conditions on which the program will stop. Indeed, when I write a program, I always make sure someone has the ability to terminate it! I am not saying that the resulting list of conditions is <em>trivial</em> to create, but it doesn't seem impossible to me. You could take input from the user, use them to calculate pointer indexes, etc - but that just adds to the number of conditions to ensure the program will terminate, doesn't make it impossible to enumerate them.</p>
<p>So what exactly is the halting problem? What am I not understanding about the idea that we cannot write a problem to detect infinite loops? Or, why are "loops" such an oft-cited example?</p>
<p><strong>UPDATE</strong></p>
<p>So, let me change the question a little bit: what is the halting problem <em>as it applies to computers?</em> And then I will respond to some of the comments:</p>
<p>Many people have said that the program must be able to deal with "any arbitrary input." But in computers, there isn't ever any arbitrary input. If I only input a single byte of data, than I only have 2^8 possible inputs. So, as an example:</p>
<pre><code>int c = getchar()
switch (c) {
case 'q':
/* quit the program */
}
</code></pre>
<p>All of the sudden, I have just accounted for all of the possibilities. If <code>c</code> has the bit pattern 0x71, it does one thing. For all other patterns, it does something else. Even a program that accepts arbitrary string input is never really "arbitrary", since resources are finite, which means that while the theory of "arbitrary" applies... it isn't exactly one-to-one with the practice.</p>
<p>The other example people cited is this:</p>
<pre><code>while (n != 1)
if (n & 1 == 1)
n = 3 * n + 1;
else
n /= 2;
</code></pre>
<p>If n is a 32-bit integer... then I can visually tell you whether or not this will halt.</p>
<p>I guess this edit isn't asking anything, but the most convincing example I've seen is <a href="http://stackoverflow.com/questions/1111155/what-exactly-is-the-halting-problem/1111231#1111231">this one</a>:</p>
<p>Assume that you have your magical program/method to determine that a program halts.</p>
<pre><code>public bool DeterminesHalt(string filename, string[] args){
//runs whatever program you tell it do, passing any args
//returns true if the program halts, false if it doesn't
}
</code></pre>
<p>Now lets say we write a small piece of code such as...</p>
<pre><code>public static void Main(string[] args){
string filename = Console.ReadLine(); //read in file to run from user
if(DeterminesHalt(filename, args))
for(;;);
else
return;
}
</code></pre>
<p>So for this example, we can write a program to do the exact opposite of our magical halting method does. If we somehow determine that a given program will halt, we just hop into an infinite loop; otherwise if we determine that the program is in an infinite loop, we end the program.</p>
<p>Then again, if you intentionally write a program which contains an infinite loop... "solving the halting problem" is kind of moot, isn't it?</p>
http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages6Practical non-Turing-complete languages?Kyle Cronin2008-11-24T20:27:35Z2009-09-10T09:35:06Z
<p>Nearly all programming languages used are <a href="http://en.wikipedia.org/wiki/Turing_Complete" rel="nofollow">Turing Complete</a>, and while this affords the language to represent any <a href="http://en.wikipedia.org/wiki/Computability_theory_(computer_science)" rel="nofollow">computable</a> algorithm, it also comes with its own set of <a href="http://en.wikipedia.org/wiki/Halting_problem" rel="nofollow">problems</a>. Seeing as all the algorithms I write are intended to halt, I would like to be able to represent them in a language that guarantees they will halt.</p>
<p><a href="http://en.wikipedia.org/wiki/Regular_Expression" rel="nofollow">Regular expressions</a> used for matching strings and <a href="http://en.wikipedia.org/wiki/Finite_state_machine" rel="nofollow">finite state machines</a> are used when <a href="http://en.wikipedia.org/wiki/Lexing" rel="nofollow">lexing</a>, but I'm wondering if there's a more general, broadly language that's not Turing complete?</p>
<p><strong>edit:</strong> I should clarify, by 'general purpose' I don't necessarily want to be able to write all halting algorithms in the language (I don't think that such a language would exist) but I suspect that there are common threads in halting proofs that can be generalized to produce a language in which all algorithms are guaranteed to halt.</p>
<p>There's also another way to tackle this problem - eliminate the need for theoretically infinite memory. Once you limit the amount of memory the machine is allowed, the number of states the machine is in is finite and countable, and therefore you can determine if the algorithm will halt (by not allowing the machine to move into a state it's been in before).</p>
http://stackoverflow.com/questions/1241215/do-all-regular-expressions-halt7Do all regular expressions halt?Horace Loeb2009-08-06T20:28:01Z2009-08-07T13:40:54Z
<p>Is there any regular expression that will, for some input string, search for a match forever?</p>
http://stackoverflow.com/questions/920385/what-would-programming-languages-look-like-if-every-computable-thing-could-be-don2What would programming languages look like if every computable thing could be done in 1 second?Paul Hollingsworth2009-05-28T11:27:51Z2009-05-29T21:29:22Z
<p>Inspired by <a href="http://stackoverflow.com/questions/910935/how-will-quantum-computing-affect-us">this question</a></p>
<p>Suppose we had a magical turing machine with infinite memory, and unlimited CPU power.</p>
<p>Use your imagination as to how this might be possible, e.g. it uses some sort of hyperspace continuum to automatically parallelize anything as much as is desired, so that it could calculate the answer to any computable question, no matter what it's time complexity is and number of actual "logical steps", in one second.</p>
<p>However, it can only answer computable questions in one second... so I'm not positing an "impossible" machine (at least I don't think so)... For example, this machine still wouldn't be able to solve the halting problem.</p>
<p>What would the programming language for such a machine look like? All programming languages I know about currently have to make some concessions to "algorithmic complexity"... with that constraint removed though, I would expect that all we would care about would be the "expressiveness" of the programming language. i.e. it's ability to concisely express "computable questions"...</p>
<p>Anyway, in the interests of a hopefully interesting discussion, opening it up as community wiki...</p>
http://stackoverflow.com/questions/475350/can-the-halting-problem-be-solved-for-any-non-turing-languages6Can the halting problem be solved for any non-turing languages?Shalmanese2009-01-24T02:23:56Z2009-05-02T12:25:22Z
<p>The halting problem cannot be solved for turing complete languages and it can be solved trivially for some non TC languages like regexes where it always halts. </p>
<p>I was wondering if there are any languages where it has both the ability to halt and not halt and there is also an algorithm that can determine whether it halts.</p>
http://stackoverflow.com/questions/586213/the-halting-problem-and-background-compilation0the halting problem and background compilation?Robert Gould2009-02-25T14:38:59Z2009-02-25T16:04:07Z
<p>I'm trying to figure out how I could write an autocompletion algorithm for Lua, but since as with many scripting languages it lacks a static type system I think I need background compilation, but during background compilation it's easy to hit the halting problem so I was wondering if anyone has solved this sort of thing before, and what are the standard strategies for solving compilation and halting? </p>
http://stackoverflow.com/questions/235394/how-do-you-apply-theoretical-computer-science14How do you apply Theoretical Computer Science?Claudiu2008-10-24T22:00:55Z2009-02-01T18:35:16Z
<p>Why is theory useful? Do you ever use it in your day-to-day coding? For example, we learned about the <b>halting problem</b>, Turing machines, reductions, etc... a lot of classmates are saying it's abstract and useless and there's no real point to knowning any of it (meaning, you can forget it once the course is over and not lose anything).</p>
http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field29The Halting Problem in the FieldClaudiu2008-10-25T06:08:25Z2009-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/367571/detecting-infinite-loop-in-brainfuck-program6Detecting infinite loop in brainfuck programsundar2008-12-15T05:49:53Z2008-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)
>+++ Put 3 in (2)
<[ While( (1) is non zero)
-- Decrease (1) by 2
>[ While( (2) is non zero)
- Decrement (2)
<+ Increment (1)
>]
(2) would be 0 at this point
+++ Increase (2) by 3 making (2) = 3
<] (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 >= oldval)
Raise an 'infinite loop' error and exit
EndIf
/* Do other character's processings */
EndIf
EndLoop
end
</code></pre>