Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'numeric': 0.07; 'semantic': 0.07; 'python': 0.08; '21,': 0.09; 'float.': 0.09; "it'd": 0.09; 'programmer': 0.11; 'am,': 0.14; 'received:209.85.214.174': 0.14; 'received:mail- iw0-f174.google.com': 0.14; 'wrote:': 0.14; '"new': 0.16; 'accuracy,': 0.16; 'angelico': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'hypothetical': 0.16; 'standard"': 0.16; 'subject:Fibonacci': 0.16; 'sure,': 0.16; 'long,': 0.16; 'awesome': 0.19; 'header:In-Reply-To:1': 0.21; 'happen.': 0.23; 'integer': 0.23; 'unlikely': 0.23; 'fri,': 0.23; "i'm": 0.27; 'message-id:@mail.gmail.com': 0.28; 'problem': 0.28; 'received:209.85.214': 0.28; '(as': 0.29; 'sat,': 0.29; 'steven': 0.32; 'someone': 0.33; 'to:addr:python-list': 0.33; "isn't": 0.33; 'chris': 0.34; 'thinking': 0.34; 'there': 0.35; "d'aprano": 0.35; 'else': 0.35; 'uses': 0.36; 'difference': 0.37; 'too.': 0.37; 'received:google.com': 0.37; 'received:209.85': 0.37; 'accuracy': 0.37; 'extremely': 0.37; 'could': 0.38; 'but': 0.38; 'subject:: ': 0.38; 'some': 0.38; 'should': 0.39; 'said': 0.39; 'received:209': 0.39; 'to:addr:python.org': 0.39; 'ever': 0.64; 'here': 0.66; 'favour': 0.73; 'promote': 0.78; 'stupid': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=0DrNdcNfuL4vEMYteBxOwUgw1pu3+j1u5H0PsJA+mFE=; b=EtnNvO1rHL2L1XaQqpHSlk1+Cb4X/FUPAyCcy9lQnRYOFoCoLSdzVTCax5CG0PQLDf 74eTfVMTeRxSO0+my1mk3C0okC74owN/fedqI4ckipckP5FbEngu7OfQUmvftxy4fxKS fhT8VUY1aYSoCp6oFi1lYX/2o4/QrHjrTmwh0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=FMSsUxnRtjnVrT/66sl53tEn85mn0EXWcA6gvVFBAr9dBgAMJhGJpFW+jNy/os/KaL vktZNpGfu2szQ2AQaT7Q+fGIMdn2HBPzuS+zFLLFBAsOSy9/bbzlB0A622Nd/IQhsA35 uLFOjbjhIRb8c91FDNRCZYc0JGhub0wU60xwk= MIME-Version: 1.0 In-Reply-To: <4dd69fcd$0$29996$c3e8da3$5496439d@news.astraweb.com> References: <108ce447-10fa-4cf7-84ef-440ee18dbfd4@22g2000prx.googlegroups.com> <9d9c163b-14fd-4131-81bb-105c3b97c432@h36g2000pro.googlegroups.com> <4dd59e1e$0$29996$c3e8da3$5496439d@news.astraweb.com> <4dd602ec$0$29996$c3e8da3$5496439d@news.astraweb.com> <4dd69fcd$0$29996$c3e8da3$5496439d@news.astraweb.com> Date: Sat, 21 May 2011 10:44:35 +1000 Subject: Re: Faster Recursive Fibonacci Numbers From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 22 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1305938679 news.xs4all.nl 49182 [::ffff:82.94.164.166]:58575 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:5893 On Sat, May 21, 2011 at 3:07 AM, Steven D'Aprano wrote: > On Fri, 20 May 2011 16:54:06 +1000, Chris Angelico wrote: > >> If someone has time to kill (as if!), it'd be awesome to get a new >> numeric type that uses bc's code; any other numeric type (int, long, >> float) could autopromote to it, removing the dilemma of which to promote >> out of long and float. Hmm... Python 4.0, 'bc' is the new default >> integer and everything else is a performance optimization? Heh. > > The problem is, it isn't *just* a performance optimization, there is a > semantic difference too. Consider: Sure, but I'm thinking here that the "gold standard" is accuracy, with other types allowing a programmer to forfeit some accuracy in favour of performance. (Oh, and I should have said "new default numeric type".) And, of course, I was thinking in a stupid hypothetical way that's extremely unlikely ever to happen. Chris Angelico