Commit 2022-11-07 21:34 a300eb9d
View on Github →feat: #conv command: #simp, #norm_num etc. (#539)
The command #conv $tac => $e will run a conv tactic tac on e and display the resulting simplified version of e'. This is used to implement several other user commands:
#whnf edisplays the weak head normal form ofe#simp edisplays the simp normal form ofe#norm_num eevaluateseusingnorm_num#push_neg eshows the result ofpush_negoneTheconvversions ofnorm_numandpush_negare also added here, so that the commands can be implemented as macros.