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, T_FILL_THIS_FORM_SHORT autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,d83fe9988355b1f3 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!news4.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Wed, 22 Mar 2006 19:21:32 -0600 From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Request for critics References: <2WkUf.635442$084.549856@attbi_s22> X-Newsreader: Tom's custom newsreader Message-ID: Date: Wed, 22 Mar 2006 19:21:32 -0600 NNTP-Posting-Host: 67.169.16.3 X-Trace: sv3-fF8Iq+Hj43lyurY88G90wJisArlZHycxQEjRGo2/qngEXC/g7IM+bitcL7V8hwebDnWRkrIual7JBc4!zIlHGd4H9u2mmY8vTXk0z2quHOQFG0TYlx8r/IZVqfL8DnTkpoT1w0t8vEFleAlw6YAl4hcIuXM= X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news1.google.com comp.lang.ada:3563 Date: 2006-03-22T19:21:32-06:00 List-Id: A few additional minor suggestions: Image : constant array(Cell_State) of Character := (Active => '*', Inactive => ' '); then procedure Show(Row : in Row_Of_Cells) is use Ada.Text_IO; begin for I in Row'range loop Put(Image(Row(I))); end loop; New_Line; end Show; and New_State : constant array(Cell_State, Cell_State) of Cell_State := (Active => (Active=>Inactive, Inactive=>Active), Inactive => (Active=>Active, Inactive=>Inactive), then New_Automata(Cell_Index) := New_State(Automata(Cell_Index - 1), Automata(Cell_Index + 1));