假设我在 Isabelle 中有以下代码:
lemma"[| xs@zs = ys@xs ;[]@xs = []@[] |] => ys=zs" (*never mind the lemma body*)
apply simp
done
在上面的代码中, simp 方法证明了引理。我有兴趣查看并打印出简化方法用来证明这个引理的详细(重写/简化)步骤(并且可能能够对所有其他证明方法做同样的事情)。这怎么可能?
我正在使用带有 JEdit 编辑器的 isabelle 2014。
非常感谢