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] unproven VC with newer why version



> Would it be useful to add automatically a clause "variant N-i;" for
> loops having the simple syntactic structure "for (i = ... ; i < N ;
> i++)"? This way proof obligations for such loops (which are quite
> common) would be automatically discharged.

> Regards,
> david

In C, the loop variable can be modified in the body. Hence, The loop variant you propose may not hold. If a variant was added automatically, it wouldn't be possible to verify these loops. The same is true for loop invariants.

A solution is to use abstract interpretation to infer simple loop invariants and variants automatically.