JML:如何指定具有新月形元素的数组的要求?
我想在 JML 中做到这一点:
//@ requires (\forall int i : array[i] < array[i+1])
void calculatesDistances(int[] array){
..
}
我无法让它工作,在 JML 规范中看到了很多示例,但找不到如何做到这一点的方法。
那么,我怎样才能做到呢?
I want to do that in JML:
//@ requires (\forall int i : array[i] < array[i+1])
void calculatesDistances(int[] array){
..
}
I couldn't make it work, saw a lot of examples in JML specs, but couldn't find a way how to do it.
So, how can i make it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是使用蕴涵来“防范”无意义的数组值:
使用
\forall
的新语法,我相信您还可以编写:where
(i >= 0 && i < array.length-1)
是范围表达式。One way is to "guard" against nonsense array values using implication:
With the newer syntax for
\forall
, I believe you could also write:where
(i >= 0 && i < array.length-1)
is the range expression.