September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
|
|
@ -1,9 +1,9 @@
|
|||
import std.stdio, std.math, std.typecons, std.typetuple;
|
||||
import std.stdio, std.math, std.meta, std.typecons;
|
||||
|
||||
real agm(real a, real g, in int bitPrecision=60) pure nothrow @nogc @safe {
|
||||
do {
|
||||
//{a, g} = {(a + g) / 2.0, sqrt(a * g)};
|
||||
TypeTuple!(a, g) = tuple((a + g) / 2.0, sqrt(a * g));
|
||||
AliasSeq!(a, g) = tuple((a + g) / 2.0, sqrt(a * g));
|
||||
} while (feqrel(a, g) < bitPrecision);
|
||||
return a;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue