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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,70463e369385ff2a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-07-05 19:01:17 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!netnews.com!xfer02.netnews.com!newsfeed2.earthlink.net!newsfeed.earthlink.net!newsmaster1.prod.itd.earthlink.net!newsread2.prod.itd.earthlink.net.POSTED!not-for-mail Message-ID: <3B451BE2.E0FFF67F@acm.org> From: Jeffrey Carter X-Mailer: Mozilla 4.7 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: explain error to me References: <08617.5643$Tv5.787326@news6-win.server.ntlworld.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Fri, 06 Jul 2001 02:01:21 GMT NNTP-Posting-Host: 158.252.146.235 X-Complaints-To: abuse@earthlink.net X-Trace: newsread2.prod.itd.earthlink.net 994384881 158.252.146.235 (Thu, 05 Jul 2001 19:01:21 PDT) NNTP-Posting-Date: Thu, 05 Jul 2001 19:01:21 PDT Organization: EarthLink Inc. -- http://www.EarthLink.net X-Received-Date: Thu, 05 Jul 2001 18:58:58 PDT (newsmaster1.prod.itd.earthlink.net) Xref: archiver1.google.com comp.lang.ada:9527 Date: 2001-07-06T02:01:21+00:00 List-Id: "chris.danx" wrote: > > 2) declare a type like this > > -- a type representing the range of the number > -- of houses > SUBTYPE NumHouses is Natural range 1..25; > > then declare houseArrays like this > > TYPE HouseArrays IS ARRAY (NumHouses'first..NumHouses'last) OF HouseHolds; This is better written as type House_Arrays is array (Numhouses) of Households; > > 3) Reuse ArrayCounter type as in 2. > > TYPE HouseArrays IS ARRAY (ArrayCounter'first..ArrayCounter'last) OF HouseHolds; Again, this would be better with just "(Arraycounter)" for the range. -- Jeff Carter "You tiny-brained wipers of other people's bottoms!" Monty Python & the Holy Grail