Tagged Questions
The halting problem is a famous problem in theoretical computer science. Given as input a description of a program (typically a Turing machine) and an input to that program, the Halting problem is to decide whether that program terminates on that input.
69
votes
15answers
3k views
Infinite loops in Java
Look at the following infinite while loop in Java. It causes a compile-time error for the statement below it.
while(true)
{
System.out.println("inside while");
}
System.out.println("while ...
48
votes
13answers
3k views
The Halting Problem in the Field
When have you ever personally come upon the halting problem in the field? This can be when a co-worker / boss suggested a solution which would violate the fundamental limits of computation, or when ...
24
votes
21answers
2k views
What exactly is the halting problem?
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 task"
Makes ...
16
votes
21answers
1k views
How do you apply Theoretical Computer Science?
Why is theory useful? Do you ever use it in your day-to-day coding? For example, we learned about the halting problem, Turing machines, reductions, etc... a lot of classmates are saying it's abstract ...
14
votes
10answers
2k views
Practical non-Turing-complete languages?
Nearly all programming languages used are Turing Complete, and while this affords the language to represent any computable algorithm, it also comes with its own set of problems. Seeing as all the ...
11
votes
8answers
3k views
Detecting infinite loop in brainfuck program
I have written a simple brainfuck 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 ...
9
votes
8answers
381 views
Do all regular expressions halt?
Is there any regular expression that will, for some input string, search for a match forever?
9
votes
3answers
708 views
Can the halting problem be solved for any non-turing languages?
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.
I was wondering if there are any ...
6
votes
3answers
196 views
“Finding all the code in a given binary is equivalent to the Halting problem.” Really?
Was just reading the highly voted question regarding Emulators and the statement
It's been proven that finding all the
code in a given binary is equivalent
to the Halting problem.
Really ...
5
votes
2answers
125 views
Automatically and deterministicly testing a function for associativity, commutativity etc
Is it possible to construct a higher order function isAssociative that takes another function of two arguments and determines whether that function is associative?
Similar question but for other ...
3
votes
1answer
237 views
How does this proof, that the halting problem is undecidable, work?
I'm going over the proof for The Halting Problem in Intro to the Theory of Computation by Sipser and my main concern is about the proof below:
If TM M doesn't know when it's looping (it can't accept ...
3
votes
7answers
275 views
Is there a “good enough” solution for the halting problem?
It is known that the halting problem cannot have a definite solution, one that a) returns true <==> the program does indeed halt, and b) handles any input, but I was wondering if there are good ...
2
votes
4answers
95 views
Algorithm to solve Turing's “Halting problem”
"Alan Turing proved in 1936 that a general algorithm to solve the
halting problem for all possible program-input pairs cannot exist"
Can I find a general algorithm to solve the halting problem ...
2
votes
1answer
242 views
Proof that the halting problem is NP-hard?
(I apologize if this is the wrong site for this question, but given that there are many "not-hard-enough-for-CS-Theory" CS theory questions floating around here, I think that this might be a good fit. ...
2
votes
5answers
10k views
iPhone + UITableView + row height problem
I am setting the row height of my UITableView using following code
[tableView setRowHeight: 100.00];
I am using the single line as separator in the UITableView.
Eventhough setting the height above, ...
1
vote
3answers
791 views
Turing machine halting problem
I have a question about turing machines and halting problem.
Suppose that we have Atm = {(M,w) where M is a turing machine and w is an input} and
HALTtm = {(M,w) where M is a turing machine halts ...
1
vote
11answers
516 views
What would programming languages look like if every computable thing could be done in 1 second?
Inspired by this question
Suppose we had a magical Turing Machine with infinite memory, and unlimited CPU power.
Use your imagination as to how this might be possible, e.g. it uses some sort of ...
0
votes
1answer
58 views
Why does the halting problem make it impossible for software to determine the time complexity of an algorithm
I've read some articles about big-Oh calculation and the halting problem. Obviously it's not possible for ALL algoritms to say if they ever are going to stop, for example:
...
0
votes
2answers
80 views
Detecting if a Program is in an Infinite Loop (Read: Solving the Halting Problem)
Is detecting whether a deterministic program (i.e. state machine) is in an infinite loop equivalent to solving the halting problem?
I came up with a solution, and I'm not sure why it shouldn't work:
...
0
votes
0answers
589 views
ODD_WLS_labs Oracle VM VirtualBox images - 'No bootable medium found' error
I've downloaded the pre-built developer VM for Oracle WebLogic Server Development from here and done all the install instructions.
But when I started the VM from VirtualBox, the following error ...
0
votes
2answers
408 views
Android 3.0 emulator launching issue
I am trying to test a simple status bar notification program on Android 3.0 emulator. when i try to run my application from eclipse, sometimes either i see a message that "apk can't be installed"' ...
0
votes
1answer
257 views
Controller action is called twice
I've noticed, that "index" action of my controller is called twice.
The action has following structure:
def index
if params[:tags].nil?
# [fork #1] just return the whole collection of model
...
0
votes
4answers
134 views
why there can't be a program that checks another program
I am trying to find the logical alan turing explanation why there can't be a program that checks another programs.
I remember we learned in on the computation course but now i just can't find the ...
0
votes
2answers
240 views
the halting problem and background compilation?
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 ...
-1
votes
2answers
54 views
The use of System.currentTimeMillis() in loops in Java [closed]
Let's observe the following segment of code in Java that uses System.currentTimeMillis() in a for loop.
package loops;
final public class Main
{
public static void main(String... args)
{
...