feat(library/tactic/proof_state): remove goal name when pretty printing the proof state

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-11-24 20:22:47 -08:00
parent 48d7afb0e8
commit d75bd2ae98

View file

@ -16,7 +16,7 @@ format proof_state::pp(formatter const & fmt, options const & opts) const {
first = false;
else
r += line();
r += group(format{format(p.first), colon(), line(), p.second.pp(fmt, opts)});
r += p.second.pp(fmt, opts);
}
return r;
}