Add comment about which method is used to approximate pi

This commit is contained in:
neingeist 2014-02-15 13:57:53 +01:00
parent f98e46dbe4
commit ed40922f52

View file

@ -6,6 +6,7 @@ double approximate_pi(unsigned int steps) {
double approximate_pi = 4.0; double approximate_pi = 4.0;
bool subtract = true; bool subtract = true;
/* GregoryLeibniz series */
for (unsigned int i = 2; i <= steps; i++) { for (unsigned int i = 2; i <= steps; i++) {
if (subtract) { if (subtract) {
approximate_pi -= (4.0 / (i * 2 - 1)); approximate_pi -= (4.0 / (i * 2 - 1));