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:
parent
48d7afb0e8
commit
d75bd2ae98
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ format proof_state::pp(formatter const & fmt, options const & opts) const {
|
||||||
first = false;
|
first = false;
|
||||||
else
|
else
|
||||||
r += line();
|
r += line();
|
||||||
r += group(format{format(p.first), colon(), line(), p.second.pp(fmt, opts)});
|
r += p.second.pp(fmt, opts);
|
||||||
}
|
}
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue