We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 430b8e5 commit e45f485Copy full SHA for e45f485
src/flint/types/acb.pyx
@@ -1403,6 +1403,9 @@ cdef class acb(flint_scalar):
1403
def rel_one_accuracy_bits(self):
1404
return acb_rel_one_accuracy_bits(self.val)
1405
1406
+ def bits(self):
1407
+ return acb_bits(self.val)
1408
+
1409
def ei(s):
1410
r"""
1411
Exponential integral `\operatorname{Ei}(s)`.
src/flint/types/arb.pyx
@@ -2416,6 +2416,9 @@ cdef class arb(flint_scalar):
2416
2417
return arb_rel_one_accuracy_bits(self.val)
2418
2419
2420
+ return arb_bits(self.val)
2421
2422
def lambertw(s, int branch=0):
2423
2424
Lambert *W* function, `W_k(s)`. Either the principal
0 commit comments