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.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,5c1125c290d9dd14 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!l6g2000yqb.googlegroups.com!not-for-mail From: sjw Newsgroups: comp.lang.ada Subject: Re: ANN: Ada 2005 Math Extensions, 20100810 release Date: Thu, 12 Aug 2010 05:48:24 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: <82ocd8m826.fsf@stephe-leake.org> NNTP-Posting-Host: 20.133.0.13 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1281617304 23195 127.0.0.1 (12 Aug 2010 12:48:24 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 12 Aug 2010 12:48:24 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: l6g2000yqb.googlegroups.com; posting-host=20.133.0.13; posting-account=_RXWmAoAAADQS3ojtLFDmTNJCT0N2R4U User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8,gzip(gfe) Xref: g2news1.google.com comp.lang.ada:13174 Date: 2010-08-12T05:48:24-07:00 List-Id: On Aug 12, 11:36=A0am, Stephen Leake wrote: > Post complete code, I'll try it on my version of gnat. Thanks. Remember -gnatpg! The code I posted above is the complete spec (not going to bother to write the body if can't get the spec to compile!): with Ada.Numerics.Generic_Complex_Arrays; with Ada.Numerics.Generic_Complex_Types; generic with package Complex_Types is new Ada.Numerics.Generic_Complex_Types (Real); with package Complex_Arrays is new Ada.Numerics.Generic_Complex_Arrays (Generic_Real_Arrays, Complex_Types); -- <<<<<<<<<<<<<<<<<< use Complex_Arrays; package Ada.Numerics.Generic_Real_Arrays.Extensions is function Eigenvalues (A : Real_Matrix) return Complex_Vector; end Ada.Numerics.Generic_Real_Arrays.Extensions;