mirror of
https://github.com/DanilaFe/abacus
synced 2024-12-22 15:30:09 -08:00
Fix getPi function.
This commit is contained in:
parent
27ad10c0f1
commit
cf953da40a
|
@ -405,7 +405,7 @@ public class StandardPlugin extends Plugin {
|
||||||
NumberInterface L = new NaiveNumber(13591409).promoteTo(numClass);
|
NumberInterface L = new NaiveNumber(13591409).promoteTo(numClass);
|
||||||
NumberInterface X = M;
|
NumberInterface X = M;
|
||||||
NumberInterface sum = L;
|
NumberInterface sum = L;
|
||||||
int termsNeeded = C.getMaxPrecision()/13;
|
int termsNeeded = C.getMaxPrecision()/13 + 1;
|
||||||
|
|
||||||
NumberInterface lSummand = new NaiveNumber(545140134).promoteTo(L.getClass());
|
NumberInterface lSummand = new NaiveNumber(545140134).promoteTo(L.getClass());
|
||||||
NumberInterface xMultiplier = new NaiveNumber(262537412).promoteTo(X.getClass())
|
NumberInterface xMultiplier = new NaiveNumber(262537412).promoteTo(X.getClass())
|
||||||
|
@ -420,9 +420,9 @@ public class StandardPlugin extends Plugin {
|
||||||
.divide(new NaiveNumber(Math.pow(i+1,3)).promoteTo(M.getClass()));
|
.divide(new NaiveNumber(Math.pow(i+1,3)).promoteTo(M.getClass()));
|
||||||
L = L.add(lSummand);
|
L = L.add(lSummand);
|
||||||
X = X.multiply(xMultiplier);
|
X = X.multiply(xMultiplier);
|
||||||
sum = sum.add(M.add(L).divide(X));
|
sum = sum.add(M.multiply(L).divide(X));
|
||||||
}
|
}
|
||||||
piValues.put(numClass, NaiveNumber.ONE.promoteTo(numClass).divide(sum).multiply(C));
|
piValues.put(numClass, C.divide(sum));
|
||||||
}
|
}
|
||||||
return piValues.get(numClass);
|
return piValues.get(numClass);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user