Practical non-Turing-complete languages? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T06:06:48Z http://stackoverflow.com/feeds/question/315340 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages 6 Practical non-Turing-complete languages? Kyle Cronin 2008-11-24T20:27:35Z 2009-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/315340/practical-non-turing-complete-languages/315388#315388 1 Answer by Robert Gamble for Practical non-Turing-complete languages? Robert Gamble 2008-11-24T20:39:59Z 2008-11-24T20:39:59Z <p>Any non-Turing-complete language wouldn't be very useful as a general purpose language. You might be able to find something that bills itself as a general purpose language without being Turing-complete but I've never seen one.</p> http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages/315401#315401 7 Answer by hasen j for Practical non-Turing-complete languages? hasen j 2008-11-24T20:44:11Z 2008-11-24T21:11:23Z <p>The problem is not with the turing machine, it's with "algorithm". The reason why you can't predict if an algorithm will halt or not is because of this:</p> <pre><code>function confusion() { if( halts( confusion ) ) { while True: no-op } else return; } </code></pre> <p>any language that can't do recursion or loops wouldn't really be "general-purpose".</p> <p>Regular expressions and finite-state-machines are the same thing! lexing and string matching are the same thing! The reason FMSs halt is because they never loop; they just pass on the input char-by-char and exit.</p> <p>EDIT:</p> <p>For many algorithms, it's obvious whether or not they would halt.</p> <p>for instance:</p> <pre><code>function nonhalting() { while 1: no-op } </code></pre> <p>This function clearly never halts.</p> <p>and, this function obviously halts:</p> <pre><code>function simple_halting_function() { return 1; } </code></pre> <p>So the bottom line: you CAN guarantee that your algorithm halts, just design it so that it does.</p> <p>If you are not sure whether the algorithm would halt all the time; then you probably cannot implement it in any language that guarantees "halting".</p> http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages/315433#315433 1 Answer by grieve for Practical non-Turing-complete languages? grieve 2008-11-24T20:51:57Z 2008-11-24T20:51:57Z <p>It turns out that it is fairly easy to be turing complete. For example you only need the 8 instructions ala <a href="http://esolangs.org/wiki/Brainfuck" rel="nofollow">BrainF**k</a>, and more to the point you really only need <a href="http://en.wikipedia.org/wiki/One_instruction_set_computer" rel="nofollow">one instruction</a>.</p> <p>The heart of these language is a looping construct, and as soon as you have loops you have an inherent halting problem. When will the loop terminate? Even in a non-Turing complete language which supported loops you would still have the halting problem.</p> <p>If you want all your programs to terminate, then you just need to write your code carefully. A specific language may be more to your liking and style, but I don't think any language can guarantee absolutely that the resulting program will halt.</p> http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages/315434#315434 9 Answer by Adam Rosenfield for Practical non-Turing-complete languages? Adam Rosenfield 2008-11-24T20:52:43Z 2008-11-24T20:52:43Z <p><a href="http://en.wikipedia.org/wiki/BlooP_and_FlooP" rel="nofollow">BlooP</a> (short for <strong>B</strong>ounded <strong>loop</strong>) is an interesting non-Turing-complete language. It's a essentially a Turing-complete language, with one (major) caveat: every loop <em>must</em> contain a bound on the number of iterations. Infinite loops are not allowed. As a result, the Halting Problem can be solved for BlooP programs.</p> http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages/315465#315465 0 Answer by Demur Rumed for Practical non-Turing-complete languages? Demur Rumed 2008-11-24T21:04:21Z 2008-11-24T21:04:21Z <p>What you're asking for wouldn't be a very good language. You're not really asking for a language though, you're asking for a subset. It reminds me a bit of the whole SafeD concept with the D language. What you're looking for is a subset of a language, which can be attained by simply ignoring features you deem risky</p> http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages/315775#315775 1 Answer by Larry OBrien for Practical non-Turing-complete languages? Larry OBrien 2008-11-24T22:49:24Z 2008-11-24T22:49:24Z <p>"eliminate the need for theoretically infinite memory." -- well, yeah. Any physical computer is limited by the entropy of the universe and, even before that, by the speed of light (== maximum rate at which information can propagate).</p> <p>Even easier, in a physically-realizable computer, just monitor resource consumption and put some bound on it. (i.e., when memory or time consumption > MY_LIMIT, kill the process).</p> <p>If what you're asking is a purely mathematical / theoretical solution, how do you define "general purpose"? </p> http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages/1083399#1083399 5 Answer by Mr. Putty for Practical non-Turing-complete languages? Mr. Putty 2009-07-05T03:24:24Z 2009-07-05T03:24:24Z <p>Don't listen to the naysayers. There are very good reasons one might prefer a non-Turing complete language in some contexts, if you want to guarantee termination, or simplify code, for example by removing the possibility of runtime errors. Sometimes, just ignoring things may not be sufficient. </p> <p>The paper <a href="http://www.jucs.org/jucs%5F10%5F7/total%5Ffunctional%5Fprogramming/jucs%5F10%5F07%5F0751%5F0768%5Fturner.pdf" rel="nofollow">Total Functional Programming</a> argues more or less persuasively that in fact we should almost always prefer such a restricted language because the compiler's guarantees are so much stronger. Being able to prove a program halts can be significant in and of itself, but really this is the product of the much easier reasoning that the simpler languages afford. As one component in a hierarchy of languages of varying capability, the range of utility of non-universal languages is quite broad.</p> <p>Another system that addresses this layering concept much more fully is <a href="http://www-fp.cs.st-andrews.ac.uk/hume/index.shtml" rel="nofollow">Hume</a>. The <a href="http://www-fp.cs.st-andrews.ac.uk/hume/report/hume-report.pdf" rel="nofollow">Hume Report</a> gives a full description of the system and it five layers of progressively more complete, and progressively less safe, languages.</p> <p>And finally, don't forget <a href="http://pll.cpsc.ucalgary.ca/charity1/www/home.html" rel="nofollow">Charity</a>. It's a bit abstract, but it is also a very interesting approach to a useful but not universal programming language, which is based very directly on concepts from category theory.</p> http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages/1083403#1083403 3 Answer by Doug McClean for Practical non-Turing-complete languages? Doug McClean 2009-07-05T03:28:50Z 2009-07-05T03:28:50Z <p>A <a href="http://lambda-the-ultimate.org/node/3470" rel="nofollow">very similar question</a> was just asked on the programming language theory weblog <a href="http://lambda-the-ultimate.org/" rel="nofollow">Lambda the Ultimate</a>. The ensuing discussion is interesting and detailed, but it does go pretty far into the weeds ultimately.</p> http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages/1404285#1404285 1 Answer by physis for Practical non-Turing-complete languages? physis 2009-09-10T09:35:06Z 2009-09-10T09:35:06Z <p><a href="http://en.wikipedia.org/wiki/Charity%5F%28programming%5Flanguage%29" rel="nofollow">Charity</a> is not Turing complete, still, it is not only theoretically, didactically interesting (category theory), but moreover, it can solve practical problems (Hanoi towers). Its strength is so great that it can express even <a href="http://en.wikipedia.org/wiki/Ackermann%5Ffunction" rel="nofollow">Ackermann function</a>.</p>