summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2013-12-24 09:50:35 +0000
committerzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2013-12-24 09:50:35 +0000
commit7201055dfbbd470f929f6992fdb9bcffd7bec74f (patch)
treedc53210d4ccd0f1ce9fac494fb06bff88bf8b6ba
parent5279fec40385f5daeb97646409a320e2f621b321 (diff)
downloadmpc-7201055dfbbd470f929f6992fdb9bcffd7bec74f.tar.gz
mpc_asin is now much faster, it remains to check with Sage
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@1403 211d60ee-9f03-0410-a15a-8952a2c7a4e4
-rw-r--r--TODO2
1 files changed, 1 insertions, 1 deletions
diff --git a/TODO b/TODO
index 5f2b5a0..e2b87b2 100644
--- a/TODO
+++ b/TODO
@@ -33,7 +33,7 @@ sage: %timeit asin(MPComplexField()(1,1))
10000 loops, best of 3: 83.7 us per loop
sage: %timeit asin(MPComplexField()(1,1e-1000))
100 loops, best of 3: 17 ms per loop
-asin(1+i*y) ~ pi/2-y^(1/2) + i*y^(1/2) for y small > 0
+-> should be much faster with revision 1402 (check)
Same for acos:
sage: %timeit acos(MPComplexField()(1,1))