Skip to content

Commit

Permalink
Fix precision mixing in RodasTableau and better test precision mix
Browse files Browse the repository at this point in the history
Fixes #2524
  • Loading branch information
ChrisRackauckas committed Nov 12, 2024
1 parent a54f09f commit 759db76
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqRosenbrock/src/rosenbrock_tableaus.jl
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ end
struct RodasTableau{T, T2}
A::Matrix{T}
C::Matrix{T}
gamma::T
gamma::T2
c::Vector{T2}
d::Vector{T}
H::Matrix{T}
Expand Down
Empty file.
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ end
if !is_APPVEYOR && (GROUP == "All" || GROUP == "InterfaceIV" || GROUP == "Interface")
@time @safetestset "Autodiff Error Tests" include("interface/autodiff_error_tests.jl")
@time @safetestset "Ambiguity Tests" include("interface/ambiguity_tests.jl")
@time @safetestset "Precision Mixing Tests" include("interface/precision_mixing.jl")
@time @safetestset "Sized Matrix Tests" include("interface/sized_matrix_tests.jl")
@time @safetestset "Second Order with First Order Solver Tests" include("interface/second_order_with_first_order_solvers.jl")
end
Expand Down

0 comments on commit 759db76

Please sign in to comment.