3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Added "λ" pretty printing to python (#7320)

This commit is contained in:
Philip Zucker 2024-07-31 11:14:16 -04:00 committed by GitHub
parent 0c16d34eb0
commit e7382d6ff9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1412,8 +1412,10 @@ class HTMLFormatter(Formatter):
ys_pp = group(seq(ys))
if a.is_forall():
header = "∀"
else:
elif a.is_exists():
header = "∃"
else:
header = "λ"
return group(compose(to_format(header, 1),
indent(1, compose(ys_pp, to_format(" :"), line_break(), body_pp))))