]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Add the kinda_equals comparison.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 10 Jun 2011 18:56:28 +0000 (14:56 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 10 Jun 2011 18:56:28 +0000 (14:56 -0400)
src/Comparisons.hs

index b5d76d5b11d6da85ca386021be918041d83abd53..6d8dc70d846e08159c9c4ae6ea49b11a530a25a2 100644 (file)
@@ -18,6 +18,20 @@ infix 4 ~=
 (~=) = almost_equals
 
 
+-- | Like 'almost_equals', except much more tolerant. The difference
+--   between the two arguments must be less than one percent of the sum
+--   of their magnitudes.
+kinda_equals :: Double -> Double -> Bool
+kinda_equals x y =
+    (abs (x - y)) < threshold
+    where
+      threshold = ((abs x) + (abs y)) / 100.0
+
+infix 4 ~~=
+(~~=) :: Double -> Double -> Bool
+(~~=) = kinda_equals
+
+
 -- | x is very positive if it is 'epsilon' greater than zero.
 very_positive :: Double -> Bool
 very_positive x =  x - epsilon > 0