Skip to content

Commit aafecef

Browse files
ChrisRackauckas-ClaudeChrisRackauckasclaude
committed
Fix Regression_II: use TSRKC3() directly instead of OrdinaryDiffEq.OrdinaryDiffEqStabilizedRK.TSRKC3() (#3450)
`OrdinaryDiffEqStabilizedRK` is not a submodule of `OrdinaryDiffEq` on v7 (the main module only re-exports a small set of algorithms). The test file already imports `OrdinaryDiffEqStabilizedRK` on line 3, and `TSRKC3` is exported from it, so just use the bare name. Co-authored-by: ChrisRackauckas-Claude <accounts@chrisrackauckas.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 4fc9c2c commit aafecef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/regression/iipvsoop_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ rosenbrock_algs = [
146146
@test sol_ip.t sol_scalar.t && sol_ip[1, :] sol_scalar.u
147147
end
148148

149-
rkc_algs = [RKC(), ROCK2(), ROCK4(), SERK2(), OrdinaryDiffEq.OrdinaryDiffEqStabilizedRK.TSRKC3()]
149+
rkc_algs = [RKC(), ROCK2(), ROCK4(), SERK2(), TSRKC3()]
150150

151151
@testset "Algorithm $(nameof(typeof(alg)))" for alg in rkc_algs
152152
println(nameof(typeof(alg)))

0 commit comments

Comments
 (0)