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] Specification Examples



Hi Christoph,

The semantics of \separated has been precised since then. \separated expects
sets of pointers, and it states that the underlying memory chunks (taking
the type of pointers into account) do not overlap. Then, stating
\separated(a,b)
only states that the locations *a and *b do not overlap. To state what you
want, you may express it as
\separated(a+(0..n-1), b+(0..n-1))
or with quantifiers as you wrote it:
\forall integer i; 0 <= i < n && 0 <= j < n ==> \separated(a+i, b+j)

Best regards,
Yannick

On Fri, Oct 10, 2008 at 11:39 AM, Christoph Weber <
Christoph.Weber@first.fraunhofer.de> wrote:

>  Thank you for the advice, it worked under the Helium release.
>
> After searching the ACSL_1.3 PDF i found the \separated(...) function.
>
> My question is if its posible to use it in a following manner :
>
> /*@
>         requires \separated(a, b);
> */
> void array_cpy(int* a, int n, int* b);
>
>  or do i have to be more specific, say like this:
>  /*@
>         requires \forall int i,j;  \separated(a[i] b[j]);
> */
> void array_cpy(int* a, int n, int* b);
>
>
> Christoph
>
>
> ----- Original Message -----
> *From:* Yannick Moy <yannick.moy@gmail.com>
> *To:* Claude March? <Claude.Marche@inria.fr>
> *Cc:* frama-c-discuss@lists.gforge.inria.fr
> *Sent:* Thursday, October 09, 2008 4:25 PM
> *Subject:* Re: [Frama-c-discuss] Specification Examples
>
> Just a precision:
>
> With the next version of Frama-C, the separation of pointers into different
> regions is automatic (unless you prevent it with an option), so that your
> pointer parameters [a] and [b] belong indeed to different heap regions.
> Then, your code is proved right away. You may try option [-jc-opt
> -separation] to try it on the current version. Then, you will get PO at
> function call to prove these regions are indeed separated if the tool cannot
> figure it alone.
>
> --
> Yannick
>
>
> On Thu, Oct 9, 2008 at 4:18 PM, Claude March? <Claude.Marche@inria.fr>wrote:
>
>>
>>
>> Christoph Weber wrote:
>>
>>> #2: in the second example the preservation of the loop invariant wont
>>> work
>>>
>>>
>>>
>>> /*@  requires 0 < n;   requires \valid_range(a, 0, n-1) &&
>>> \valid_range(b, 0, n-1);
>>>  ensures  \forall int k; 0 <= k < n ==> a[k] == b[k];
>>> */
>>> void array_cpy(int* a, int n, int* b){  /*@ loop invariant 0 <= i <= n &&
>>> \forall int m; 0 <= m < i  ==> a[m] == b[m];
>>>  */
>>>  for(int i = 0;i< n;i++){      a[i]=b[i];     } }
>>>
>>>
>>> What am I missing, to get the examples running?
>>>
>>
>> You must take into account the fact that arrays a and b might overlap,
>> such as if you call array_cpy as
>>
>>  array_cpy(t,10,t+1);
>>
>> in such a case your spec does not hold I think.
>>
>> - Claude
>>
>> --
>> Claude March?                          | tel: +33 1 72 92 59 69
>> INRIA Saclay - ?le-de-France           | mobile: +33 6 33 14 57 93
>> Parc Orsay Universit?                  | fax: +33 1 74 85 42 29
>> 4, rue Jacques Monod - B?timent N      | http://www.lri.fr/~marche/<http://www.lri.fr/%7Emarche/>
>> F-91893 ORSAY Cedex                    |
>>
>>
>>
>>
>>
>>
>>
>> _______________________________________________
>> Frama-c-discuss mailing list
>> Frama-c-discuss@lists.gforge.inria.fr
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/frama-c-discuss
>>
>
>
>
> --
> Yannick
>
> ------------------------------
>
> _______________________________________________
> Frama-c-discuss mailing list
> Frama-c-discuss@lists.gforge.inria.fr
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/frama-c-discuss
>
>
> _______________________________________________
> Frama-c-discuss mailing list
> Frama-c-discuss@lists.gforge.inria.fr
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/frama-c-discuss
>
>


-- 
Yannick
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.gforge.inria.fr/pipermail/frama-c-discuss/attachments/20081010/3d0e3b15/attachment-0001.html