From 7291586a1193d7294044d53389710bfd066671d1 Mon Sep 17 00:00:00 2001 From: Per A Brodtkorb Date: Thu, 1 Jun 2017 18:15:32 +0200 Subject: [PATCH] Fixed small error --- wafo/integrate_oscillating.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wafo/integrate_oscillating.py b/wafo/integrate_oscillating.py index 8aa58f4..b567ecd 100644 --- a/wafo/integrate_oscillating.py +++ b/wafo/integrate_oscillating.py @@ -17,7 +17,7 @@ from numpy.polynomial import polynomial from wafo.misc import piecewise, findcross, ecross _FINFO = np.finfo(float) -EPS = _FINFO(float).eps +EPS = _FINFO.eps _EPS = EPS _TINY = _FINFO.tiny _HUGE = _FINFO.max