0
votes
2answers
80 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 …
10
votes
21answers
787 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 a …
7
votes
7answers
216 views
Do all regular expressions halt?
Is there any regular expression that will, for some input string, search for a match forever?
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 com …
14
votes
20answers
742 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 s …
2
votes
9answers
344 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 us …
6
votes
9answers
821 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. Se …
6
votes
3answers
385 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 …
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, th …
0
votes
2answers
138 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 c …
