Using the CoqIde, is there a way to view the steps simpl
has taken? I find I do not understand how it achieved its result quite often.
Example:
rev (rev (n :: l')) = n :: l'
-- apply simpl.
rev (rev l' ++ [n]) = n :: l'
Using the CoqIde, is there a way to view the steps simpl
has taken? I find I do not understand how it achieved its result quite often.
Example:
rev (rev (n :: l')) = n :: l'
-- apply simpl.
rev (rev l' ++ [n]) = n :: l'