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] Verification of axiomatization




Claude March? wrote:
> I don't understand why you are so pessimistic, Pascal.
> The answer is simple: just realize your axiomatization in Cuoq. Sorry: I 
> meant in Coq.

Another, probably quicker, possibility is first to try to prove

//@ lemma l : 0=0;

from your axiomatization. If it is proven, then yes surely you have to 
investigate you axiomatization. A way to do it then is to remove parts 
of it until you discovered the eaxt subset of axioms that can derive false.

And if the lemme is not proven, then you might also try to prove

//@ assert 0=0;

just before return statement of the function that should not be proved 
so quickly. And then proceed the same to remove some part of axiomatization.

Hope this helps,

- Claude