chore(library/tactic/congruence/congruence_closure): fix typo
This commit is contained in:
parent
77737a621d
commit
6329afc121
1 changed files with 2 additions and 2 deletions
|
|
@ -1287,10 +1287,10 @@ format congruence_closure::state::pp_eqcs(formatter const & fmt) const {
|
|||
format r;
|
||||
bool first = true;
|
||||
for (expr const & root : roots) {
|
||||
if (first) first = false; r += line();
|
||||
if (first) first = false; else r += comma() + line();
|
||||
r += pp_eqc(fmt, root);
|
||||
}
|
||||
return r;
|
||||
return bracket("{", group(r), "}");
|
||||
}
|
||||
|
||||
void initialize_congruence_closure() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue