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,b15074035c1cfe43,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-03-25 13:48:34 PST Path: archiver1.google.com!news1.google.com!sn-xit-02!sn-xit-06!sn-xit-09!supernews.com!newshosting.com!news-xfer2.atl.newshosting.com!newsfeed.icl.net!newsfeed.fjserv.net!news.teledanmark.no!uninett.no!feed.news.nacamar.de!newsfeed.vmunix.org!news-FFM2.ecrc.net!news.iks-jena.de!not-for-mail From: Lutz Donnerhacke Newsgroups: comp.lang.ada Subject: [Spark] Splitting 'and' conditions into multiple conditions Date: Tue, 25 Mar 2003 21:48:33 +0000 (UTC) Organization: IKS GmbH Jena Message-ID: NNTP-Posting-Host: belenus.iks-jena.de X-Trace: branwen.iks-jena.de 1048628913 11112 217.17.192.34 (25 Mar 2003 21:48:33 GMT) X-Complaints-To: usenet@iks-jena.de NNTP-Posting-Date: Tue, 25 Mar 2003 21:48:33 +0000 (UTC) User-Agent: slrn/0.9.7.4 (Linux) Xref: archiver1.google.com comp.lang.ada:35700 Date: 2003-03-25T21:48:33+00:00 List-Id: The simplifier is often unable to prove easy conclusions, because conditions given als assert, precondition, and postcondition occur as a single conclusion. Example: C1: res__1 >= buf__first and res__1 <= buf__last and (res__1 >= 0 and res__1 <= 0) -> res__1 >= buf__first and res__1 <= buf__last . Or do I misinterpret this line containing an implication? Should the simplifier not able to handle this by transfering the frist part to the hypothis?