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 @@ -219,13 +219,13 @@ std::ostream &format_rec(std::ostream &os, const exprt &expr)
219
219
else if (id == ID_type)
220
220
return format_rec (os, expr.type ());
221
221
else if (id == ID_forall)
222
- return os << id << u8" \u2200 : "
223
- << format (to_quantifier_expr (expr).symbol ().type ()) << " . "
224
- << format (to_quantifier_expr (expr).where ());
222
+ return os << u8" \u2200 " << format ( to_quantifier_expr (expr). symbol ())
223
+ << " : " << format (to_quantifier_expr (expr).symbol ().type ())
224
+ << " . " << format (to_quantifier_expr (expr).where ());
225
225
else if (id == ID_exists)
226
- return os << id << u8" \u2203 : "
227
- << format (to_quantifier_expr (expr).symbol ().type ()) << " . "
228
- << format (to_quantifier_expr (expr).where ());
226
+ return os << u8" \u2203 " << format ( to_quantifier_expr (expr). symbol ())
227
+ << " : " << format (to_quantifier_expr (expr).symbol ().type ())
228
+ << " . " << format (to_quantifier_expr (expr).where ());
229
229
else if (id == ID_let)
230
230
return os << " LET " << format (to_let_expr (expr).symbol ()) << " = "
231
231
<< format (to_let_expr (expr).value ()) << " IN "
You can’t perform that action at this time.
0 commit comments