From 8ca5d2fbe294d2e7b161c1932bafe47cdb41977f Mon Sep 17 00:00:00 2001 From: odow Date: Wed, 17 Apr 2024 14:47:09 +1200 Subject: [PATCH] Update --- src/functions.jl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/functions.jl b/src/functions.jl index 4a6e884239..bc658737c4 100644 --- a/src/functions.jl +++ b/src/functions.jl @@ -915,11 +915,7 @@ function Base.isapprox( end # This method is used by CBF in testing. -function Base.isapprox( - f::MOI.VectorOfVariables, - g::MOI.VectorAffineFunction; - kwargs..., -) +function Base.isapprox(f::VectorOfVariables, g::VectorAffineFunction; kwargs...) return isapprox(convert(typeof(g), f), g; kwargs...) end