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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,80532c203ced41ef X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit X-FeedAbuse: http://nntpfeed.proxad.net/abuse.pl feeded by 88.191.16.109 Path: g2news1.google.com!news3.google.com!feeder1-2.proxad.net!proxad.net!feeder2-2.proxad.net!nntpfeed.proxad.net!nospam.fr.eu.org!usenet-fr.net!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Ann: Mathpaqs, release Feb. 2011 Date: Fri, 25 Feb 2011 21:09:29 +0000 Organization: A noiseless patient Spider Message-ID: References: <838f49da-9a83-49d1-b42e-64b45f9b2917@x13g2000vbe.googlegroups.com> <1ib2wlicecaim$.1o25nuvllws3i.dlg@40tude.net> <1raralz4504m2$.1mwiu22cgxle0.dlg@40tude.net> <46b2df60-5b87-44f3-8c2d-22b830749c50@y31g2000prd.googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: mx03.eternal-september.org; posting-host="dFCm8HWntFqmDIilBLqEJQ"; logging-data="21233"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/XWztVMUOK63kwhWbE2dEHV5HcdifKUXY=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (darwin) Cancel-Lock: sha1:QUzv3XhjKyrnYiM3qCKQDGRXGFU= sha1:EHzutICAR3zLnSUFELSC35NAAe8= Xref: g2news1.google.com comp.lang.ada:17603 Date: 2011-02-25T21:09:29+00:00 List-Id: "comp.lang.php" writes: > A good method is UMFPACK > http://www.cise.ufl.edu/research/sparse/umfpack/ , it is written in C > and Ada bindings are possible. Very interesting. I'm wondering whether -- in the spirit of competition -- to have a go at including a binding in Ada 2005 Math extensions, even though it's somewhat outside the scope as I'd seen it. I can see a problem writing a general binding for code like this (umf_solve.h): GLOBAL Int UMF_solve ( Int sys, const Int Ap [ ], const Int Ai [ ], const double Ax [ ], double Xx [ ], const double Bx [ ], #ifdef COMPLEX const double Az [ ], double Xz [ ], const double Bz [ ], #endif NumericType *Numeric, Int irstep, double Info [UMFPACK_INFO], Int Pattern [ ], double SolveWork [ ] ) ;