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=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.107.155.6 with SMTP id d6mr4947576ioe.134.1516814482959; Wed, 24 Jan 2018 09:21:22 -0800 (PST) X-Received: by 10.157.90.130 with SMTP id w2mr709860oth.14.1516814482878; Wed, 24 Jan 2018 09:21:22 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!paganini.bofh.team!weretis.net!feeder6.news.weretis.net!feeder.usenetexpress.com!feeder-in1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!g80no150118itg.0!news-out.google.com!b73ni9621ita.0!nntp.google.com!g80no150113itg.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Wed, 24 Jan 2018 09:21:22 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2601:191:8303:2100:7466:f44c:da21:40b1; posting-account=fdRd8woAAADTIlxCu9FgvDrUK4wPzvy3 NNTP-Posting-Host: 2601:191:8303:2100:7466:f44c:da21:40b1 References: User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <35d17b8f-b911-4b11-b82e-93663413c128@googlegroups.com> Subject: Re: Resolving Long Filenames for Packages From: Robert Eachus Injection-Date: Wed, 24 Jan 2018 17:21:22 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader02.eternal-september.org comp.lang.ada:50106 Date: 2018-01-24T09:21:22-08:00 List-Id: On Wednesday, January 24, 2018 at 11:23:20 AM UTC-5, alex...@juniv=C3=B6rs.= com wrote: > In my current project, I am making an attempt to elaborate on the means o= f which a serie of automata operates (and is structured), by building my ow= n version of regular expressions (even though not called that, nor function= ing in the exact same way.) Hmm. It is difficult to define a subset of regular expressions which is not= a complete subset. If you have * | () and some way of defining terminal sy= mbols you get all REs. Supersets are easier. ;-) As for the naming issue, I would either go with EPAA_x.ads or automaton_x.a= ds, there is no need to repeat the directory name since you can use a fully= qualified path when needed. Or, you can stay with the full names, and have renames where needed. In fa= ct, you might want to put all of the units in an (Ada) package Expressions_= Parser_Automata, and rename that package as EPA.=20