如何将序列分配给 TLA 的 CONSTANTS 部分中的常量?配置文件?

发布于 2024-09-02 12:43:38 字数 270 浏览 3 评论 0原文

我已经尝试过

CONSTANTS seq = <<5,6,7>>

,但 TLC 给了我一个语法错误:

错误:TLC 发现错误 配置文件的第 1 行。它是 期待 = 或 <- 但没有找到。

我还尝试在配置文件中包含 Sequences 模块,但无济于事。

那么...我需要做什么来分配序列?

I've tried

CONSTANTS seq = <<5,6,7>>

but TLC gives me a syntax error:

Error: TLC found an error in the
configuration file at line 1. It was
expecting = or <- and didn't find it.

I've also tried to include the Sequences module in the configuration file, to no avail.

So... what do I have to do to assign a sequence?

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

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

发布评论

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

评论(3

黎歌 2024-09-09 12:43:38

我不记得曾经遇到过这个问题,而且我的 TLC 太生锈了,无法尝试为您提供第一手答案(我刚刚重新使用 TLA+ 工具箱)。

然而,从下面链接的帖子中,我发现您无法通过 TLC 配置文件使用序列实例化常量。

http://bbpress.tlaplus.net/topic/creating-a -sequence-from-a-set

尽管问题很老,留下答案可能会对未来的 TLAers 有所帮助。

I don't remember ever facing this problem and my TLC is too rusty to try and give you a first hand answer (I just restarted using the TLA+ toolbox).

From the post linked bellow, however, I figure that you can't instantiate constants with sequences through the TLC config files.

http://bbpress.tlaplus.net/topic/creating-a-sequence-from-a-set

Even though the question is old, leaving an answer may help future TLAers.

蛮可爱 2024-09-09 12:43:38

您不能直接分配给 TLA+ 文件中的常量。如果您使用工具箱,请编写 CONSTANTS seq,然后在模型中添加所需的元组作为普通赋值。

You can't directly assign to a constant in the TLA+ file. If you're using the toolbox, write CONSTANTS seq, then in the model add the tuple you want as an ordinary assignment.

今天小雨转甜 2024-09-09 12:43:38

所以事实证明您需要一个单独的 .tla 文件。假设您有“Main.tla”作为源文件。您希望 MyConst 具有值 <<1,2,3>>。 TLA+ 工具箱生成 MC.tla,其中放置常量:

---- MODULE MC ----
EXTENDS Main, TLC

const_uniq12345 = <<1,2,3>>
====

MC.cfg 中,将会有一行

CONSTANT MyConst <- const_uniq12345

Note that MyConst = const_uniq12345 won'不起作用 - 如果您使用 = 而不是 <-MyConst 将包含模型值 const_uniq12345 而不是<<1, 2, 3>>

我使用了 https://github .com/hwayne/tlacli 能够从命令行运行 TLC(TLA 工具箱的用户体验很糟糕),并且我能够在额外的 .tla 文件的帮助下提供元组常量像这样。当然,我也使用了有意义的名称而不是 const_uniq12345 。不过,必须手动调用 java -cp /path/to/tla2tools.jar ... (使用 --show-script 选项获取完整命令tlacli),因为当前 tlacli 不处理配置中的 <-

So it turns out that you need a separate .tla file for that. Suppose you have "Main.tla" as you source file. You want MyConst to have value <<1,2,3>>. TLA+ toolbox generates MC.tla where it puts the constants:

---- MODULE MC ----
EXTENDS Main, TLC

const_uniq12345 = <<1,2,3>>
====

in MC.cfg, there will be the line

CONSTANT MyConst <- const_uniq12345

Note that MyConst = const_uniq12345 won't work -- if you use = instead of <-, MyConst will contain model value const_uniq12345 instead of <<1, 2, 3>>

I used https://github.com/hwayne/tlacli to be able to run TLC from command line (TLA toolbox has awful UX), and I was able to supply a tuple constant with help of extra .tla file like this. I used meaningful name instead of const_uniq12345 too, of course. Had to call java -cp /path/to/tla2tools.jar ... manually, though (got the full command using --show-script option of tlacli), because currently tlacli doesn't handle <- in the config.

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