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=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Problem Cross - Posted fron Sci Crypt Crypto Group Date: Sun, 04 Nov 2018 15:27:25 +0000 Organization: A noiseless patient Spider Message-ID: References: <514a0be1-2445-4450-91ad-3ddd38e84032@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: reader02.eternal-september.org; posting-host="7d4d1433fce9afae7038ba9214bc06b6"; logging-data="20885"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+P1xfn4Sp+jm7j9rertpvh5ey2TRp+ILw=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (darwin) Cancel-Lock: sha1:KSNYnr/Bhn5XxYmi9DrSEr516KY= sha1:bZfWQV4KyMfTCiZ1QQfL704lOA8= Xref: reader02.eternal-september.org comp.lang.ada:54759 Date: 2018-11-04T15:27:25+00:00 List-Id: There doesn't appear to be any group "Sci Crypt Crypto". It's extraordinarily unlikely that you'd get a constraint error from I/O. The most likely reason is that you have an array in your code with bounds such as 1 .. 100_000 and your code is exceeding these bounds. But the chance of anyone here being able to help you find out where is also on the low side, since you haven't posted any code (note, I'm not inviting you to, since the last time I tried to help you you completely ignored my suggestions). You would almost certainly gain from using an up-to-date compiler (https://www.adacore.com/community). Even if you won't do that, try compiling with appropriate options: "gnatmake -g -O0 your_program.adb" will probably give you the line number where the CE is happening.