在Z3 and-then
和then
以及两个有效的组合子中。有什么区别,如果有的话? and-then
从(help-tactic)
发出以下消息:
- (and-then <tactic>+) executes the given tactics sequencially.
但是,then
似乎没有在任何地方定义。
答案 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")