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

revert use of f format

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-11-19 00:01:19 -08:00
parent f83367a11e
commit 99d5215956

View file

@ -1157,9 +1157,6 @@ class Formatter:
return self.pp_pbcmp(a, d, f, xs)
elif k == Z3_OP_PB_EQ:
return self.pp_pbcmp(a, d, f, xs)
elif k == Z3_OP_SEQ_UNIT and z3.is_app(a.arg(0)) and a.arg(0).decl().kind() == Z3_OP_CHAR_CONST:
n = a.arg(0).params()[0]
return to_format("\"" + f"{chr(n)}" + "\"")
elif z3.is_pattern(a):
return self.pp_pattern(a, d, xs)
elif self.is_infix(k):