Skip to content

Commit

Permalink
Fix in Lobatto nullvector constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
michakraus committed Feb 4, 2021
1 parent fe25af1 commit 088174d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tableaus/lobatto.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function get_lobatto_nullvector(::Type{T}, s; normalize=false) where {T}
normalize ? T.(LinearAlgebra.normalize(w) .* sign(w[begin])) : T.(w)
end

get_lobatto_nullvector(s; kwargs...) = get_lobatto_nullvector(BigFloat, s; kwargs...)
get_lobatto_nullvector(s; kwargs...) = get_lobatto_nullvector(Float64, s; kwargs...)


@doc raw"""
Expand Down

0 comments on commit 088174d

Please sign in to comment.