File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 77
88Arb : TypeAlias = object
99
10- arb = flint .arb
10+ arb = flint .arb # type: ignore[unresolved-attribute]
1111a , b = smt .Reals ("a b" )
1212flint_decls = {
1313 real .sqrt : arb .sqrt ,
@@ -193,7 +193,7 @@ def res(x: Arb) -> kd.kernel.Proof:
193193"""
194194
195195
196- def z3_of_exact_arb (x : flint .arb ) -> smt .ArithRef :
196+ def z3_of_exact_arb (x : flint .arb ) -> smt .ArithRef : # type: ignore[unresolved-attribute]
197197 """
198198 Get exact arb as z3 value
199199
@@ -213,7 +213,7 @@ def z3_of_exact_arb(x: flint.arb) -> smt.ArithRef:
213213 return smt .simplify (smt .RealVal (int (man )) * smt .RealVal (2 ) ** smt .RealVal (int (exp )))
214214
215215
216- def z3_mid_rad_of_arb (x : flint .arb ) -> tuple [smt .ArithRef , smt .ArithRef ]:
216+ def z3_mid_rad_of_arb (x : flint .arb ) -> tuple [smt .ArithRef , smt .ArithRef ]: # type: ignore[unresolved-attribute]
217217 """
218218 Get midpoint and radius as z3 values.
219219
You can’t perform that action at this time.
0 commit comments