Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
IainNZ committed Aug 27, 2018
1 parent 216df0d commit a2394f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JuMP.jl
Expand Up @@ -375,7 +375,7 @@ Base.isempty(::AbstractJuMPScalar) = false
# Check if two arrays of AbstractJuMPScalars are equal. Useful for testing.
function isequal_canonical(x::AbstractArray{<:JuMP.AbstractJuMPScalar},
y::AbstractArray{<:JuMP.AbstractJuMPScalar})
size(x) == size(y) && all(JuMP.isequal_canonical.(x, y))
return size(x) == size(y) && all(JuMP.isequal_canonical.(x, y))
end

"""
Expand Down

0 comments on commit a2394f6

Please sign in to comment.