Printing out / showing detailed steps of proof methods (like simp) in a proof in isabelle
问题 Suppose I have the following code in Isabelle: lemma"[| xs@zs = ys@xs ;[]@xs = []@[] |] => ys=zs" (*never mind the lemma body*) apply simp done In the above code, The simp method proves the lemma. I am interested to see and print out the detailed (rewriting /simplification) steps that the simplification method takes to prove this lemma ( and possibly be able to do the same for all the other proof methods). How this is possible? I am using isabelle 2014 with JEdit editor. Many Thanks 回答1: The