aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2019-02-22 15:19:09 +0000
committerRossTheRoss <msattr@gmail.com>2019-02-22 15:19:09 +0000
commit7b2883d02646fc552598911a87b76f760b6198a8 (patch)
treeb7596ca345a089be90c88350828480494feea210
parentFix my problems because I'm an idiot (diff)
downloadhomework-7b2883d02646fc552598911a87b76f760b6198a8.tar
homework-7b2883d02646fc552598911a87b76f760b6198a8.tar.gz
homework-7b2883d02646fc552598911a87b76f760b6198a8.tar.bz2
homework-7b2883d02646fc552598911a87b76f760b6198a8.tar.lz
homework-7b2883d02646fc552598911a87b76f760b6198a8.tar.xz
homework-7b2883d02646fc552598911a87b76f760b6198a8.tar.zst
homework-7b2883d02646fc552598911a87b76f760b6198a8.zip
E
-rw-r--r--ee1301/wk3/lab3/RootBabylonOG.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ee1301/wk3/lab3/RootBabylonOG.cpp b/ee1301/wk3/lab3/RootBabylonOG.cpp
index 9972250..d0d8b39 100644
--- a/ee1301/wk3/lab3/RootBabylonOG.cpp
+++ b/ee1301/wk3/lab3/RootBabylonOG.cpp
@@ -13,7 +13,7 @@ double BabylonRoot(double n) {
do {
guess = gennewGuess(n,guess);
cout << guess << endl;
- } while (abs(guess-real)/real>0.05); //Keep guessing unitl within 5% of the actual square root
+ } while (abs(guess-real)/real>0.01); //Keep guessing unitl within 1% of the actual square root
return guess;
}