Alloy 中的谓词问题

发布于 2024-10-17 02:39:31 字数 342 浏览 6 评论 0原文

所以我在合金中有以下代码:

sig Node { }
sig Queue { root : Node }

pred SomePred {
    no q, q' : Queue | q.root = q'.root
}

run SomePred for 3

但这不会产生任何包含队列的实例,我想知道为什么。它只显示带有节点的实例。我已经尝试了等效的谓词

pred SomePred' {
    all q, q' : Queue | q.root != q'.root
}

,但输出是相同的。

我错过了什么吗?

So I have the following bit of code in Alloy:

sig Node { }
sig Queue { root : Node }

pred SomePred {
    no q, q' : Queue | q.root = q'.root
}

run SomePred for 3

but this won't yield any instance containing a Queue, I wonder why. It only shows up instances with Nodes. I've tried the equivalent predicate

pred SomePred' {
    all q, q' : Queue | q.root != q'.root
}

but the output is the same.

Am I missing something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

街道布景 2024-10-24 02:39:31

其中存在一个逻辑缺陷:

fact SomeFact {
    no q, q' : Queue | q.root = q'.root
}

假设有一个实例,该实例具有单个队列 Q,该队列具有给定的根 R。运行 SomeFact 时,它会测试唯一可用的队列 Q,并且会发现 Q.root = Q.root ,从而排除给定实例的出现。

对于具有任意数量的队列的实例可以进行相同的推理。

这是一个工作版本:

sig Node {
}

sig Queue {
    root : Node
}

fact sss {
    all disj q, q' : Queue | q.root != q'.root
}

pred abc() {
}

run abc for 3

There's a logic flaw in there:

fact SomeFact {
    no q, q' : Queue | q.root = q'.root
}

Assume there is an instance with a single queue Q that has a given root R. When running SomeFact, it'd test the only queue available, Q, and it'd find it that Q.root = Q.root, thus, excluding the given instance from coming to life.

The same reasoning can be made for instances with an arbitrary number of queues.

Here is a working version:

sig Node {
}

sig Queue {
    root : Node
}

fact sss {
    all disj q, q' : Queue | q.root != q'.root
}

pred abc() {
}

run abc for 3
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文