'然后'vs'然后'Z3组合

时间:2016-06-21 18:34:50

标签: z3

在Z3 and-thenthen以及两个有效的组合子中。有什么区别,如果有的话? and-then(help-tactic)发出以下消息:

- (and-then <tactic>+) executes the given tactics sequencially.

但是,then似乎没有在任何地方定义。

1 个答案:

答案 0 :(得分:0)

没有区别。如果我们在Z3源代码树中grep "then""and-then",那么我们发现这些字符串只出现一次并且它们是同义词:

grep -rE '"and-then"|"then"'
src/cmd_context/tactic_cmds.cpp:        if (cmd_name == "and-then" || cmd_name == "then")