File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -217,13 +217,13 @@ std::ostream &format_rec(std::ostream &os, const exprt &expr)
217
217
else if (id == ID_type)
218
218
return format_rec (os, expr.type ());
219
219
else if (id == ID_forall)
220
- return os << id << u8" \u2200 : "
221
- << format (to_quantifier_expr (expr).symbol ().type ()) << " . "
222
- << format (to_quantifier_expr (expr).where ());
220
+ return os << u8" \u2200 " << format ( to_quantifier_expr (expr). symbol ())
221
+ << " : " << format (to_quantifier_expr (expr).symbol ().type ())
222
+ << " . " << format (to_quantifier_expr (expr).where ());
223
223
else if (id == ID_exists)
224
- return os << id << u8" \u2203 : "
225
- << format (to_quantifier_expr (expr).symbol ().type ()) << " . "
226
- << format (to_quantifier_expr (expr).where ());
224
+ return os << u8" \u2203 " << format ( to_quantifier_expr (expr). symbol ())
225
+ << " : " << format (to_quantifier_expr (expr).symbol ().type ())
226
+ << " . " << format (to_quantifier_expr (expr).where ());
227
227
else if (id == ID_let)
228
228
return os << " LET " << format (to_let_expr (expr).symbol ()) << " = "
229
229
<< format (to_let_expr (expr).value ()) << " IN "
You can’t perform that action at this time.
0 commit comments