Skip to content

Commit 79dc1c5

Browse files
committed
ty
1 parent 972423c commit 79dc1c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/kdrag/theories/real/arb.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Arb: TypeAlias = object
99

10-
arb = flint.arb
10+
arb = flint.arb # type: ignore[unresolved-attribute]
1111
a, b = smt.Reals("a b")
1212
flint_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

0 commit comments

Comments
 (0)