0
votes
2answers
113 views
iPhone + UITableView + row height problem
Hi,
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 …
7
votes
7answers
220 views
Do all regular expressions halt?
Is there any regular expression that will, for some input string, search for a match forever?
10
votes
21answers
804 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 …
2
votes
9answers
348 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
2answers
141 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 …
7
votes
3answers
393 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
8answers
1k 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 …
6
votes
9answers
830 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 …
29
votes
12answers
2k 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 …
14
votes
20answers
749 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 …
