lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master 9be9b1d 09/13: Refactor


From: Greg Chicares
Subject: [lmi-commits] [lmi] master 9be9b1d 09/13: Refactor
Date: Sun, 4 Jul 2021 19:04:45 -0400 (EDT)

branch: master
commit 9be9b1dca3bc9c77faab9c1fc9a355af0582534c
Author: Gregory W. Chicares <gchicares@sbcglobal.net>
Commit: Gregory W. Chicares <gchicares@sbcglobal.net>

    Refactor
---
 zero_test.cpp | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

diff --git a/zero_test.cpp b/zero_test.cpp
index b945c41..4a46ba9 100644
--- a/zero_test.cpp
+++ b/zero_test.cpp
@@ -498,20 +498,18 @@ void test_various_functions()
     test_a_decimal_function(f01, root_01, -1.0 , 4.0, 17     , __LINE__, 163);
     test_a_function        (f01, root_01, -1.0 , 4.0, 1.0e-15, __LINE__);
 
-    e_nineteenth e_19; // Same function as f01()--refactor soon.
-
     // For now, test_a_decimal_function() tests that the error is
     // within tolerance, ignoring roundoff in the computed function.
     // That may very often be useful, but it can produce spurious
     // failures, as in these three commented-out lines:
-//  test_a_decimal_function(e_19, 0.0, -1.0, 4.0, 20, __LINE__, 169);
-//  test_a_decimal_function(e_19, 0.0, -1.0, 4.0, 19, __LINE__, 171);
-//  test_a_decimal_function(e_19, 0.0, -1.0, 4.0, 18, __LINE__, 168);
-    test_a_decimal_function(e_19, 0.0, -1.0, 4.0, 17, __LINE__, 163);
-    test_a_decimal_function(e_19, 0.0, -1.0, 4.0, 16, __LINE__, 156);
-    test_a_decimal_function(e_19, 0.0, -1.0, 4.0, 15, __LINE__, 142);
-    test_a_decimal_function(e_19, 0.0, -1.0, 4.0, 14, __LINE__, 128);
-    test_a_decimal_function(e_19, 0.0, -1.0, 4.0, 12, __LINE__, 112);
+//  test_a_decimal_function(f01, 0.0, -1.0, 4.0, 20, __LINE__, 169);
+//  test_a_decimal_function(f01, 0.0, -1.0, 4.0, 19, __LINE__, 171);
+//  test_a_decimal_function(f01, 0.0, -1.0, 4.0, 18, __LINE__, 168);
+    test_a_decimal_function(f01, 0.0, -1.0, 4.0, 17, __LINE__, 163);
+    test_a_decimal_function(f01, 0.0, -1.0, 4.0, 16, __LINE__, 156);
+    test_a_decimal_function(f01, 0.0, -1.0, 4.0, 15, __LINE__, 142);
+    test_a_decimal_function(f01, 0.0, -1.0, 4.0, 14, __LINE__, 128);
+    test_a_decimal_function(f01, 0.0, -1.0, 4.0, 12, __LINE__, 112);
 
     auto f02 = [](double x) {return std::pow(x - 1.7, 17.0);};
     auto root_02 = 1.7;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]