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=0.7 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM,REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,99210dd26e04d959 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: Tuck Newsgroups: comp.lang.ada Subject: Re: Loops and parallel execution Date: Mon, 14 Feb 2011 15:27:29 -0800 (PST) Organization: http://groups.google.com Message-ID: Reply-To: comp.lang.ada@googlegroups.com NNTP-Posting-Host: 146.115.94.80 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1297726049 28657 127.0.0.1 (14 Feb 2011 23:27:29 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 14 Feb 2011 23:27:29 +0000 (UTC) In-Reply-To: <4d3ffba5$0$6764$9b4e6d93@newsspool3.arcor-online.net> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=146.115.94.80; posting-account=PvmV9AoAAAD6m3XXwubwsbGwa7cDXv1N User-Agent: G2/1.0 Xref: g2news2.google.com comp.lang.ada:18252 Date: 2011-02-14T15:27:29-08:00 List-Id: On Wednesday, January 26, 2011 5:47:00 AM UTC-5, Georg Bauhaus wrote: > On 26.01.11 09:46, Egil H=F8vik wrote: >=20 > > You should take a look at Tucker Tafts blog about ParaSail, >=20 > I have, need to look more closely, though. Is anything known yet > about what John Barnes's Integrate example would look like if > written in idiomatic ParaSail? It might look something like this: function Integrate( function Func(X : Floating is Float<>) -> Floating; Over : Interval) -> Floating is ... end function Integrate; ... const Result :=3D Integrate(Sin, Over =3D> 0.0 .. Pi/2.0); -Tuck