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] Problem with ACSL annotations
- Subject: [Frama-c-discuss] Problem with ACSL annotations
- From: virgile.prevosto at m4x.org (Virgile Prevosto)
- Date: Wed, 19 Dec 2012 10:36:33 +0100
- In-reply-to: <1355833700.6271.YahooMailNeo@web133004.mail.ir2.yahoo.com>
- References: <1355833700.6271.YahooMailNeo@web133004.mail.ir2.yahoo.com>
Hello, Le mar. 18 d?c. 2012 12:28:20 CET, intissar mzalouat <intissar_mzalouat at yahoo.fr> a ?crit : > /*@ requires \valid_range(queue,0,14); > ??? ensures \result==0 ==> (\exists int i;0<=i<15 && ((\forall int j; > 0<=j<15 && queue[i] > queue[j] )&&((queue[i]>=5) || > (queue[i]<=10)))); */ int find_array_max(int queue[15]){ > > I had some problems to write postconditions in ACSL for this function. > Could you, please help me? It would have helped if you had stated explicitely what your problems were, but my guess is that \forall int j; 0<=j<15 && queue[i]>queue[j] should be replaced with \forall int j; 0<=j<15 ==> queue[i]>queue[j] The former says that for any int j, both 0<=j<15 and queue[i]>queue[j] hold, which is trivially falsified by taking j == -1. The latter says that for any int j between 0 and 15, we have queue[i]>queue[j]. More generally, the informal spec "for any x in P, Q holds" is written \forall x; P ==> Q, while "there exists x in P such that Q holds" is indeed written as what you've done: \exists x; P && Q. Best regards, -- E tutto per oggi, a la prossima volta. Virgile
- Follow-Ups:
- [Frama-c-discuss] Problem with ACSL annotations
- From: intissar_mzalouat at yahoo.fr (intissar mzalouat)
- [Frama-c-discuss] Problem with ACSL annotations
- From: intissar_mzalouat at yahoo.fr (intissar mzalouat)
- [Frama-c-discuss] Problem with ACSL annotations
- References:
- [Frama-c-discuss] Problem with ACSL annotations
- From: intissar_mzalouat at yahoo.fr (intissar mzalouat)
- [Frama-c-discuss] Problem with ACSL annotations
- Prev by Date: [Frama-c-discuss] Frama-C and Linux verification?
- Next by Date: [Frama-c-discuss] Which version of Frama-C/Why to use PVS ? (Jessie or WP)
- Previous by thread: [Frama-c-discuss] Problem with ACSL annotations
- Next by thread: [Frama-c-discuss] Problem with ACSL annotations
- Index(es):