Path: csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; '16,': 0.03; 'elements.': 0.05; 'cc:addr:python-list': 0.09; 'insertion': 0.09; 'modulo': 0.09; 'optimizing': 0.09; 'subject:module': 0.09; 'question.': 0.13; 'stack': 0.13; 'def': 0.13; 'thu,': 0.15; 'algorithmic': 0.16; 'eliminating': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'integer.': 0.16; 'mistake.': 0.16; 'trivially': 0.16; 'useless': 0.16; 'utterly': 0.16; 'wrote:': 0.16; "shouldn't": 0.18; 'language': 0.19; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'fixing': 0.22; 'pass': 0.22; 'examples': 0.24; 'header:In-Reply-To:1': 0.24; 'all.': 0.24; 'sort': 0.25; 'question': 0.27; 'message- id:@mail.gmail.com': 0.27; 'module.': 0.27; 'looks': 0.29; 'equally': 0.29; 'faster,': 0.29; 'tail': 0.29; 'understand,': 0.29; "i'm": 0.30; 'code': 0.30; 'problem': 0.33; 'ones,': 0.33; 'received:google.com': 0.35; 'ones': 0.35; 'next': 0.35; 'could': 0.35; 'done': 0.35; 'lists.': 0.35; 'solving': 0.35; 'something': 0.35; 'problem.': 0.35; 'but': 0.36; 'too': 0.36; 'totally': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'being': 0.37; 'turn': 0.37; 'why': 0.39; 'sure': 0.39; 'takes': 0.39; 'subject:-': 0.39; 'some': 0.40; 'your': 0.60; "you'll": 0.61; 'more': 0.63; 'benefit': 0.66; 'improvements': 0.66; 'real-world': 0.66; 'jul': 0.72; 'obvious': 0.76; 'chrisa': 0.84; 'pardon': 0.84; 'terrible': 0.84; 'to:none': 0.91; 'crucial': 0.91; 'mistake': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=ab31DY0F3tXOxXK9z2zGWx+qQvX8QBvjo09VM26A4zE=; b=dflc/hf0/PI9ROZXDyDmBtC/dzkF0DUS63EvW8h1pPfsyjLEfqinRAx9LLJuFZU/mt vMhLvozV1a5MUuRFcbZ2xRndxk0vIQGvBDtaCoDOzSnFnlr67IfUv0v6Q2/ENxGUTdiD fMsRAB0cr8MlPa+GsmCQnGY7gCEpALBoTpcQT5YPM8MKXbPmjSd6QD28RVthVW4Dcq02 ehpS8oxmLglpzFohTda/EkHEqoNOF4eUtmAFF0I3+Ksbs3TerNj/R5x+yGztbB3SYETm ewF6qZb0cCMjjipcv8w2UhaAgT0zExVdMw5GPugV7Gw632DvB5Vk72jLjyGJnVXCqsxD X6Dg== MIME-Version: 1.0 X-Received: by 10.107.132.7 with SMTP id g7mr10768659iod.9.1437045076368; Thu, 16 Jul 2015 04:11:16 -0700 (PDT) In-Reply-To: <55A78A42.4090506@rece.vub.ac.be> References: <55a3dcd9$0$3024$426a34cc@news.free.fr> <55a76628$0$2846$c3e8da3$76491128@news.astraweb.com> <55A78A42.4090506@rece.vub.ac.be> Date: Thu, 16 Jul 2015 21:11:16 +1000 Subject: Re: A new module for performing tail-call elimination From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 46 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1437045085 news.xs4all.nl 2870 [2001:888:2000:d::a6]:42764 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:93922 On Thu, Jul 16, 2015 at 8:41 PM, Antoon Pardon wrote: >> Fixing the obvious mistake (failing to return anything) leads to the next >> mistake. When all you have is a hammer, everything looks like a nail. >> >> def even(n): >> return n%2 == 0 >> >> def odd(n): >> return n%2 != 0 >> >> >> are faster, easier to understand, and don't turn into an infinite loop if >> you pass a negative integer. > > Nice of you to illustrate how being pedantic about something, can > make a response useless with regard to the intended original question. > > Sure your implementation for solving this particular problem is better > if the purpose is to actually solve this problem. But it is useless as > an illustration for the question I'm asking, which was about how to > use a particular module. Once again, tail call optimization is used as a way to make something more efficient that shouldn't need to be done at all. "Bubble sort takes too long when I give it 1000 elements. How can I make it faster?" Before looking at code improvements or language improvements, it's crucial to do algorithmic improvements. The recursive even() and odd() functions are O(n), the modulo ones are O(1). Bubble sort is simply a terrible way to sort long lists. Time spent optimizing bubble sort is time utterly and totally wasted, because you'll get more benefit by switching to quicksort, insertion sort, or a hybrid like Timsort. Time spent eliminating tail call stack frames is equally useless if a small algorithmic change can eliminate the recursion altogether. That's why we need examples that *can't* be trivially reimplemented some other way. Unless, of course, *all* TCO examples, even real-world ones, could be trivially reimplemented some other way, a theory which is gaining currency... ChrisA