From 5aa16314ec50f5b8031bddc778be87195cde5744 Mon Sep 17 00:00:00 2001 From: kalmar Date: Fri, 31 Mar 2017 22:35:30 +0200 Subject: [PATCH] do not force @bigintervals when we use Floats64 in a moment --- src/checksolution.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/checksolution.jl b/src/checksolution.jl index 7cdd41e..ef8680e 100644 --- a/src/checksolution.jl +++ b/src/checksolution.jl @@ -46,7 +46,7 @@ end import ValidatedNumerics.± function (±){T<:Number}(X::AbstractArray{T}, tol::Real) - r{T}(x::T) = (x == zero(T)? @biginterval(0) : x ± tol) + r{T}(x::T) = (x == zero(T)? @interval(0) : x ± tol) return r.(X) end