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,67d995bf9f62ea45 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!d37g2000yqm.googlegroups.com!not-for-mail From: jonathan Newsgroups: comp.lang.ada Subject: Re: matrix package with Ada Date: Tue, 13 Jul 2010 07:27:09 -0700 (PDT) Organization: http://groups.google.com Message-ID: <3dd1b818-4ab0-495f-97c5-8f59035d71a4@d37g2000yqm.googlegroups.com> References: <23f0d8f1-e7bd-4af9-a0ee-cea85cbff4bd@x21g2000yqa.googlegroups.com> <8f4ba975-5441-4b42-89ad-b53373a59eb9@g19g2000yqc.googlegroups.com> <53250ca8-da19-47a9-a9b1-3cd1653fb05f@y4g2000yqy.googlegroups.com> NNTP-Posting-Host: 143.117.23.236 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1279031229 602 127.0.0.1 (13 Jul 2010 14:27:09 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 13 Jul 2010 14:27:09 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: d37g2000yqm.googlegroups.com; posting-host=143.117.23.236; posting-account=Jzt5lQoAAAB4PhTgRLOPGuTLd_K1LY-C User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.19) Gecko/2010062510 Iceweasel/3.0.6 (Debian-3.0.6-3),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:12380 Date: 2010-07-13T07:27:09-07:00 List-Id: On Jul 13, 8:07=A0am, Ada novice wrote: > On Jul 12, 11:09=A0pm, jonathan wrote: > > > > > On Jul 12, 9:13=A0pm, Simon Wright wrote: > > > > jonathan writes: > > > > Finally! The test routine is user unfriendly. =A0(I hope you fix it= up > > > > for the rest of us.) You have to enter numbers. > > > > Actually, there's a file test_generic_complex_eigenvalues.dat ... > > > ... and you have to enter these somehow, without prompt or > > instruction. > > In my Linux BASH shell it seems to be straightforward: > > > ./test_generic_complex_eigenvalues < > > test_generic_complex_eigenvalues.dat > output.txt > > > I hope that's right. =A0Now if I compare with the expected output, > > > diff =A0output.txt =A0test_generic_complex_eigenvalues.out > > > I find that all of the numbers in the 2 files are different. =A0Anythin= g > > to > > worry about? =A0(I say no;-) > > > J. > > I haven't had the time to test the dat file yet. Just one reminder > which I quote from an earlier post: > > The program doesn't exit well however. When the program > ( .ada) it will display the results but > in my GPS editor the line 102 is highlighted. This is where the > program stops. If the program would run fine then I would have finally > got this line displayed: DONE test_generic_complex_eigenvalues (at the > bottom of test_generic_complex_eigenvalues.ada). > > Do you have the same problem? > > YC The way test_generic_complex_eigenvalues works is still mysterious to me (I usually don't do things this way) so that's why I don't want to say too much about how to use it. When I send the data file in like this at the command line: ./test_generic_complex_eigenvalues < test_generic_complex_eigenvalues.dat then it seems to work, and for some reason stops without control-c. When I copy the matrices from the data file with the mouse and then paste them into command line prompt it works the 1st time, but maybe not the second. To me the important thing is that the tests pass, so we are off to a good start! J.