From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=BAYES_00,FORGED_HOTMAIL_RCVD2, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,23889412ffb2ab1 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,CP1252 Received: by 10.68.234.38 with SMTP id ub6mr22325364pbc.2.1340190810223; Wed, 20 Jun 2012 04:13:30 -0700 (PDT) Path: l9ni72137pbj.0!nntp.google.com!news2.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: =?ISO-8859-1?Q?Egil_H=F8vik?= Newsgroups: comp.lang.ada Subject: Re: a bug in code shown in ada2012 rational or is it me? Date: Wed, 20 Jun 2012 03:44:55 -0700 (PDT) Organization: http://groups.google.com Message-ID: <65e3ef59-b1bd-4e72-8eb2-f0bbabd30cee@googlegroups.com> References: NNTP-Posting-Host: 193.71.180.107 Mime-Version: 1.0 X-Trace: posting.google.com 1340190810 25503 127.0.0.1 (20 Jun 2012 11:13:30 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 20 Jun 2012 11:13:30 +0000 (UTC) Cc: nma@12000.org In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=193.71.180.107; posting-account=P68zsgoAAABKpXKMUuwuUZ_RfBk1kZfB User-Agent: G2/1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Date: 2012-06-20T03:44:55-07:00 List-Id: On Wednesday, June 20, 2012 12:09:00 PM UTC+2, Nasser M. Abbasi wrote: > function T(N: Natural) return Long_Long_Float is > (if N =3D 0 then 0.25 else > (T(N=961)=962.0**(N=961)*A(N=961)=96A(N))**2); Should be: function T(N: Natural) return Long_Long_Float is (if N =3D 0 then 0.25 else T(N=961)=962.0**(N=961)*(A(N=961)=96A(N))**2);