Skip to content

Commit 9c1018d

Browse files
committed
Fix CIs
1 parent 4fa46b5 commit 9c1018d

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

lib/BoundaryValueDiffEqAscher/src/BoundaryValueDiffEqAscher.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ using BoundaryValueDiffEqCore: AbstractBoundaryValueDiffEqAlgorithm,
99
__Fix3, __concrete_nonlinearsolve_algorithm,
1010
__internal_nlsolve_problem, __vec, __vec_f, __vec_f!,
1111
__vec_bc, __vec_bc!, __extract_mesh, get_dense_ad,
12-
__get_bcresid_prototype, __split_kwargs, __default_nonsparse_ad
12+
__get_bcresid_prototype, __split_kwargs,
13+
__default_nonsparse_ad
1314

1415
using ConcreteStructs: @concrete
1516
using DiffEqBase: DiffEqBase

lib/BoundaryValueDiffEqFIRK/src/firk.jl

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,10 @@ function init_nested(prob::BVProblem, alg::AbstractFIRK; dt = 0.0, abstol = 1e-6
177177
end
178178

179179
return FIRKCacheNested{iip, T, typeof(diffcache)}(
180-
alg_order(alg), stage, M, size(X), f, bc, prob_, prob.problem_type, prob.p, alg,
181-
TU, ITU, bcresid_prototype, mesh, mesh_dt, k_discrete, y, y₀, residual, fᵢ_cache,
182-
fᵢ₂_cache, defect, nestprob, resid₁_size, (; abstol, dt, adaptive, controller, kwargs...))
180+
alg_order(alg), stage, M, size(X), f, bc, prob_, prob.problem_type,
181+
prob.p, alg, TU, ITU, bcresid_prototype, mesh, mesh_dt,
182+
k_discrete, y, y₀, residual, fᵢ_cache, fᵢ₂_cache, defect, nestprob,
183+
resid₁_size, (; abstol, dt, adaptive, controller, kwargs...))
183184
end
184185

185186
function init_expanded(prob::BVProblem, alg::AbstractFIRK; dt = 0.0, abstol = 1e-6,
@@ -259,9 +260,9 @@ function init_expanded(prob::BVProblem, alg::AbstractFIRK; dt = 0.0, abstol = 1e
259260
prob_ = !(prob.u0 isa AbstractArray) ? remake(prob; u0 = X) : prob
260261

261262
return FIRKCacheExpand{iip, T, typeof(diffcache)}(
262-
alg_order(alg), stage, M, size(X), f, bc, prob_, prob.problem_type, prob.p,
263-
alg, TU, ITU, bcresid_prototype, mesh, mesh_dt, k_discrete, y, y₀, residual,
264-
fᵢ_cache, fᵢ₂_cache, defect, resid₁_size, (; abstol, dt, adaptive, controller, kwargs...))
263+
alg_order(alg), stage, M, size(X), f, bc, prob_, prob.problem_type, prob.p, alg,
264+
TU, ITU, bcresid_prototype, mesh, mesh_dt, k_discrete, y, y₀, residual, fᵢ_cache,
265+
fᵢ₂_cache, defect, resid₁_size, (; abstol, dt, adaptive, controller, kwargs...))
265266
end
266267

267268
"""

lib/BoundaryValueDiffEqMIRK/src/BoundaryValueDiffEqMIRK.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ using BoundaryValueDiffEqCore: AbstractBoundaryValueDiffEqAlgorithm,
2121
AbstractErrorControl, DefectControl, GlobalErrorControl,
2222
SequentialErrorControl, HybridErrorControl, HOErrorControl,
2323
__use_both_error_control, __default_coloring_algorithm,
24-
DiffCacheNeeded, NoDiffCacheNeeded
25-
__split_kwargs
24+
DiffCacheNeeded, NoDiffCacheNeeded, __split_kwargs
2625

2726
using ConcreteStructs: @concrete
2827
using DiffEqBase: DiffEqBase

0 commit comments

Comments
 (0)