Frama-C-discuss mailing list archives

This page gathers the archives of the old Frama-C-discuss archives, that was hosted by Inria's gforge before its demise at the end of 2020. To search for mails newer than September 2020, please visit the page of the new mailing list on Renater.


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Frama-c-discuss] Syntax of negation


  • Subject: [Frama-c-discuss] Syntax of negation
  • From: hollas at informatik.htw-dresden.de (Boris Hollas)
  • Date: Mon, 17 Jan 2011 16:49:40 +0100

According to 2.2.1 Operators precedence in the ACSL manual, the
expression

! \forall integer k; 0 <= k < length ==> a[k] == b[k];

should be parsed as

! (\forall integer k; (0 <= k < length ==> a[k] == b[k]));

Instead, it produces a syntax error. Is the former expression parsed as
(! \forall) ... ? That would be wrong.
-- 
Regards,
Boris