Skip to content

Commit dce4f9e

Browse files
committed
Remove pivoting arg in the lu overload
1 parent d452174 commit dce4f9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ModelingToolkit.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Base.convert(::Type{<:Array{Num}}, x::AbstractArray) = map(Num, x)
123123
Base.convert(::Type{<:Array{Num}}, x::AbstractArray{Num}) = x
124124
Base.convert(::Type{Sym}, x::Num) = value(x) isa Sym ? value(x) : error("cannot convert $x to Sym")
125125

126-
LinearAlgebra.lu(x::Array{Num}, ::Union{Val{false}, Val{true}}; check=true, kw...) = sym_lu(x; check=check)
126+
LinearAlgebra.lu(x::Array{Num}; check=true, kw...) = sym_lu(x; check=check)
127127

128128
"""
129129
$(TYPEDEF)

0 commit comments

Comments
 (0)