在尝试比较我的结构的属性(不是第一个属性)时,我遇到了promela语言的问题。
以下是一个例子:
typedef Msg {
byte header;
byte content;
}
chan pipe = [5] of { Msg };
active proctype Receive () {
Msg r;
do
:: atomic { (pipe?[1,2]) -> printf("Receive"); pipe?r; }
// doesnt compile: :: atomic { (pipe?[-,2]) -> printf("Receive2"); pipe?r; }
// doesn't compile: :: atomic { (pipe?[, 2]) -> printf("Receive3"); pipe?r; }
// doesn't works: :: atomic { (pipe?[skip, 2]) -> printf("Receive4"); pipe?r; }
od
}
active proctype Emit () {
Msg m;
m.header=1; m.content=2;
// doesn't compile: m = { 1,2 };
do
:: atomic { printf ("emit\n"); pipe!m; }
od
}
问题很简单:我只想比较content
属性。不是前一个(header
)。
我尝试了一些语法,看看语法(http://spinroot.com/spin/Man/grammar.html#recv_args ...顺便说一句,我不是专家)。
但是我仍然坚持这个问题。
我使用ispin进行模拟和测试。
任何帮助都会很棒。
谢谢!
答案 0 :(得分:1)
您无法在receive
中使用“通用匹配字符”,例如“ - ”。所以,只需声明一个变量,如下:
active proctype Receive () {
Msg r;
byte ignore
do
:: atomic { (pipe?[1,2]) -> printf("Receive"); pipe?r; }
:: atomic { (pipe?[ignore,2]) -> printf("Receive2"); pipe?r; }
od
}
它编译:
$ spin -a foo.ml
$