From 293cffdc8c3fdc3edb5aa676658cdcfd467ffe3c Mon Sep 17 00:00:00 2001 From: Marcelo Forets Date: Thu, 17 Jan 2019 07:56:36 -0300 Subject: [PATCH] Update src/Approximations/overapproximate.jl --- src/Approximations/overapproximate.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Approximations/overapproximate.jl b/src/Approximations/overapproximate.jl index 82660a65b9..975186e67e 100644 --- a/src/Approximations/overapproximate.jl +++ b/src/Approximations/overapproximate.jl @@ -160,7 +160,7 @@ hybrid systems using a combination of zonotopes and polytopes. Nonlinear analysi hybrid systems, 4(2), 233-249.* """ function overapproximate(Z::Zonotope, ::Type{<:Hyperrectangle})::Hyperrectangle - r = sum(abs.(Z.generators), dims=2)[:] + r = Compat.sum(abs.(Z.generators), dims=2)[:] return Hyperrectangle(Z.center, r) end