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] proving stack axioms with jessie


  • Subject: [Frama-c-discuss] proving stack axioms with jessie
  • From: pascal.cuoq at gmail.com (Pascal Cuoq)
  • Date: Tue, 17 Aug 2010 13:21:12 +0200
  • In-reply-to: <AANLkTi=ds4tonRUY8nwHCxv1UTyu+95kTGJXCQVVW1+7@mail.gmail.com>
  • References: <42050C88D59E144CA358159FF0E6018B09064F@TITAN.first.fraunhofer.de> <AANLkTi=ds4tonRUY8nwHCxv1UTyu+95kTGJXCQVVW1+7@mail.gmail.com>

Well, I couldn't reproduce the soundness issue, so I can't confirm
that I eliminated it, but I suggest changing pop.spec so:


#include "stack.h"
#include "stack.pred"

/*@
   requires Valid(s);
   //ensures 0 == 1;  // jessie detects this

   behavior not_empty:
     assumes !Empty(s);
     assigns s->n;
     ensures s->n == \old(s->n) - 1;
//     ensures !Empty(s); // probably unsound

//     ensures \forall integer i; 0 <= i < s->n ==>
//        s->c[i] == \old(s->c[i]);
     ensures \result == 0;
//     ensures Valid(s); // probably unnecessary with assigns clause

   behavior empty:
     assumes Empty(s);
     assigns \nothing;
//     ensures Empty(s);
     ensures \result == -1;
//     ensures Valid(s);


*/
int pop(Stack* s);

The first clause I commented, "ensures !Empty(s);" is probably
unsound. The others should be unnecessary because they are implied by
the assigns clause that I recommend you use instead.

Pascal