From 338598d9d077f37fd0690768cdaeef803e3d378d Mon Sep 17 00:00:00 2001 From: Araq Date: Fri, 26 Dec 2014 02:09:15 +0100 Subject: [PATCH] fixes #495 --- lib/pure/complex.nim | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/pure/complex.nim b/lib/pure/complex.nim index a8709e098d..0c5704f69a 100644 --- a/lib/pure/complex.nim +++ b/lib/pure/complex.nim @@ -19,10 +19,7 @@ import math const - EPS = 5.0e-6 ## Epsilon used for float comparisons (should be smaller - ## if float is really float64, but w/ the current version - ## it seems to be float32?) - + EPS = 1.0e-7 ## Epsilon used for float comparisons. type Complex* = tuple[re, im: float]