Skip to content

Commit 532c797

Browse files
committed
Select some initial guess tests
1 parent e25ccab commit 532c797

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/BoundaryValueDiffEqFIRK/test/expanded/firk_basic_tests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,6 @@ end
526526
@test sol_struct.prob.p.params sol_vec.prob.p atol = 1.0e-10
527527
end
528528

529-
#=
530529
@testitem "Test initial guess" begin
531530
tspan = (0.0, 1.0)
532531
function f!(du, u, p, t)
@@ -561,7 +560,8 @@ end
561560
bvp1 = TwoPointBVProblem(f!, (bca!, bcb!), u_guess, tspan; bcresid_prototype = (zeros(2), zeros(1)))
562561
sol1 = solve(bvp1, RadauIIa5(), dt = 0.1, adaptive = false, nlsolve_kwargs = (; maxiters = 0))
563562
@test sol1.u == u_guess
564-
563+
end
564+
#=
565565
bvp2 = TwoPointBVProblem(f!, (bca!, bcb!), sol1, tspan; bcresid_prototype = (zeros(2), zeros(1)))
566566
sol2 = solve(bvp2, RadauIIa5(), dt = 0.1, adaptive = false, nlsolve_kwargs = (; maxiters = 0))
567567
@test sol2.u == u_guess

0 commit comments

Comments
 (0)