feat(library/tactic/simp_lemmas): do not pretty print bizarre "perm" flag

This commit is contained in:
Leonardo de Moura 2017-01-11 13:48:11 -08:00
parent dc7e39887b
commit 1bb5b2ec01

View file

@ -187,8 +187,10 @@ format simp_lemma::pp(formatter const & fmt) const {
r += space() + paren(format(get_priority()));
if (is_refl())
r += space() + format("defeq");
/*
if (is_permutation())
r += space() + format("perm");
*/
if (kind() == simp_lemma_kind::Congr) {
format r1;
for (expr const & h : get_congr_hyps()) {