From ed0bcc92f5101043fa9e09a1b7f66f339aaa177b Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Thu, 29 Sep 2022 16:45:43 -0400 Subject: Increase severity to pass check --- cosine.c | 2 +- sine.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cosine.c b/cosine.c index 934ca3b..28996f0 100644 --- a/cosine.c +++ b/cosine.c @@ -26,7 +26,7 @@ double cos(double input, int precision){ int main(){ const int precision = 20; - const double threshold = 1e-4; + const double threshold = 1e-9; for (int i=0; ithreshold ){ diff --git a/sine.c b/sine.c index c483317..a6f0053 100644 --- a/sine.c +++ b/sine.c @@ -28,7 +28,7 @@ double sin(double input, int precision){ int main(){ const int precision = 20; - const double threshold = 1e-4; + const double threshold = 1e-9; for (int i=0; ithreshold ){ -- cgit v1.2.3