mirror of
https://github.com/Z3Prover/z3
synced 2025-06-13 09:26:15 +00:00
use non _ method from z3printer module so to be resilient against how _ is handled as indicator of private functions
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
216e17e5e2
commit
c67cf1653c
1 changed files with 1 additions and 1 deletions
|
@ -678,7 +678,7 @@ class Formatter:
|
||||||
if self.fpa_pretty:
|
if self.fpa_pretty:
|
||||||
if self.is_infix(k) and n >= 3:
|
if self.is_infix(k) and n >= 3:
|
||||||
rm = a.arg(0)
|
rm = a.arg(0)
|
||||||
if z3.is_fprm_value(rm) and z3._dflt_rm(a.ctx).eq(rm):
|
if z3.is_fprm_value(rm) and z3.get_default_rounding_mode(a.ctx).eq(rm):
|
||||||
arg1 = to_format(self.pp_expr(a.arg(1), d+1, xs))
|
arg1 = to_format(self.pp_expr(a.arg(1), d+1, xs))
|
||||||
arg2 = to_format(self.pp_expr(a.arg(2), d+1, xs))
|
arg2 = to_format(self.pp_expr(a.arg(2), d+1, xs))
|
||||||
r = []
|
r = []
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue