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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Received: by 2002:ac8:1719:: with SMTP id w25mr659269qtj.375.1591922571296; Thu, 11 Jun 2020 17:42:51 -0700 (PDT) X-Received: by 2002:aca:304b:: with SMTP id w72mr449272oiw.122.1591922571010; Thu, 11 Jun 2020 17:42:51 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.gegeweb.eu!gegeweb.org!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 11 Jun 2020 17:42:50 -0700 (PDT) In-Reply-To: <85b667f8-0da0-4ad5-922c-f9a28298f621o@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: google-groups.googlegroups.com; posting-host=67.164.24.162; posting-account=Qh2kiQoAAADpCLlhT_KTYoGO8dU3n4I6 NNTP-Posting-Host: 67.164.24.162 References: <768c3635-af6c-4018-9be7-60fea7d5f779o@googlegroups.com> <468a8b40-db02-4153-a890-aca7922486e5o@googlegroups.com> <27fa3ebb-9c8a-488b-9b70-1f7cb1a68e37o@googlegroups.com> <794ead8c-5067-44d7-a19a-52280ea87ea1o@googlegroups.com> <94021c95-8cdc-4298-b73b-1a4e9b05b1c3o@googlegroups.com> <07d61bf1-352e-43ba-9f82-354a494aa204o@googlegroups.com> <873a3e13-e16a-48a4-b798-7ccf8ba70e57o@googlegroups.com> <85b667f8-0da0-4ad5-922c-f9a28298f621o@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <2f384cb2-a036-4529-87f8-0669b82e1a99o@googlegroups.com> Subject: Re: Not to incite a language war but apparently the Corona lockdown was based on 13 year old undocumented C-Code From: Anh Vo Injection-Date: Fri, 12 Jun 2020 00:42:51 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader01.eternal-september.org comp.lang.ada:59055 Date: 2020-06-11T17:42:50-07:00 List-Id: On Thursday, June 11, 2020 at 5:07:35 PM UTC-7, Olivier Henley wrote: > On Thursday, June 11, 2020 at 7:14:56 PM UTC-4, Anh Vo wrote: >=20 > > The latest package body CovidSimForm (covidsimform.adb) still has with = Covid_19; use Covid_19; at line 30.=20 >=20 > No, this one should stay (in covidsimform.adb) as I am 'pulling' type def= initions found in covid_19.ads and using them everywhere in covidsimform.ad= b. This file comes with the mathpaqs git repo that should have been pulled = in the project when you cloned like so: >=20 > git clone --recursive https://github.com/ohenley/covidsim.git >=20 > If you go inside covidsim/deps/mathpaqs/diff_eq/ode/ do you find covid_19= .ads and covid_19.adb? If not, it means the cloning of submodule was not d= one. In that case either you start from scratch and clone using --recursive= or you move inside both deps/mathpaqs and deps/qt5ada and execute the foll= owing to clone the submodules: >=20 > > git submodule init > > git submodule update Using 'git clone --recursive https://github.com/ohenley/covidsim.git' give = me desired package Covid_19. Thus, I could build it successfully now. Thank= s for your help.