Skip to content

Commit fed7cf4

Browse files
committed
Bump minor version
1 parent 7186ad6 commit fed7cf4

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

lib/BoundaryValueDiffEqAscher/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "BoundaryValueDiffEqAscher"
22
uuid = "7227322d-7511-4e07-9247-ad6ff830280e"
33
authors = ["Qingyu Qu <[email protected]>"]
4-
version = "1.5.1"
4+
version = "1.6.0"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

lib/BoundaryValueDiffEqAscher/src/ascher.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ function get_fixed_points(prob::BVProblem, alg::AbstractAscher)
5858
end
5959
end
6060

61-
function SciMLBase.__init(prob::BVProblem, alg::AbstractAscher; dt = 0.0,
62-
controller = GlobalErrorControl(), adaptive = true, abstol = 1e-4,
63-
nlsolve_kwargs = (; abstol = abstol / 100), kwargs...)
61+
function SciMLBase.__init(
62+
prob::BVProblem, alg::AbstractAscher; dt = 0.0, controller = GlobalErrorControl(),
63+
adaptive = true, abstol = 1e-4, nlsolve_kwargs = (; abstol = abstol), kwargs...)
6464
(; tspan, p) = prob
6565
_, T, ncy, n, u0 = __extract_problem_details(prob; dt, check_positive_dt = true)
6666
t₀, t₁ = tspan

lib/BoundaryValueDiffEqFIRK/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "BoundaryValueDiffEqFIRK"
22
uuid = "85d9eb09-370e-4000-bb32-543851f73618"
3-
version = "1.6.1"
3+
version = "1.7.0"
44

55
[deps]
66
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

lib/BoundaryValueDiffEqFIRK/src/firk.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ function shrink_y(y, N, stage)
8181
return y_shrink
8282
end
8383

84-
function SciMLBase.__init(prob::BVProblem, alg::AbstractFIRK; dt = 0.0, abstol = 1e-6,
85-
adaptive = true, controller = DefectControl(),
86-
nlsolve_kwargs = (; abstol = abstol / 100), kwargs...)
84+
function SciMLBase.__init(
85+
prob::BVProblem, alg::AbstractFIRK; dt = 0.0, abstol = 1e-6, adaptive = true,
86+
controller = DefectControl(), nlsolve_kwargs = (; abstol = abstol), kwargs...)
8787
if alg.nested_nlsolve
8888
return init_nested(prob, alg; dt = dt, abstol = abstol, adaptive = adaptive,
8989
controller = controller, nlsolve_kwargs = nlsolve_kwargs, kwargs...)
@@ -93,9 +93,9 @@ function SciMLBase.__init(prob::BVProblem, alg::AbstractFIRK; dt = 0.0, abstol =
9393
end
9494
end
9595

96-
function init_nested(prob::BVProblem, alg::AbstractFIRK; dt = 0.0, abstol = 1e-6,
97-
adaptive = true, controller = DefectControl(),
98-
nlsolve_kwargs = (; abstol = abstol / 100), kwargs...)
96+
function init_nested(
97+
prob::BVProblem, alg::AbstractFIRK; dt = 0.0, abstol = 1e-6, adaptive = true,
98+
controller = DefectControl(), nlsolve_kwargs = (; abstol = abstol), kwargs...)
9999
@set! alg.jac_alg = concrete_jacobian_algorithm(alg.jac_alg, prob, alg)
100100

101101
iip = isinplace(prob)
@@ -187,9 +187,9 @@ function init_nested(prob::BVProblem, alg::AbstractFIRK; dt = 0.0, abstol = 1e-6
187187
nlsolve_kwargs, (; abstol, dt, adaptive, controller, kwargs...))
188188
end
189189

190-
function init_expanded(prob::BVProblem, alg::AbstractFIRK; dt = 0.0, abstol = 1e-6,
191-
adaptive = true, controller = DefectControl(),
192-
nlsolve_kwargs = (; abstol = abstol / 100), kwargs...)
190+
function init_expanded(
191+
prob::BVProblem, alg::AbstractFIRK; dt = 0.0, abstol = 1e-6, adaptive = true,
192+
controller = DefectControl(), nlsolve_kwargs = (; abstol = abstol), kwargs...)
193193
@set! alg.jac_alg = concrete_jacobian_algorithm(alg.jac_alg, prob, alg)
194194

195195
if adaptive && isa(alg, FIRKNoAdaptivity)

lib/BoundaryValueDiffEqMIRK/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "BoundaryValueDiffEqMIRK"
22
uuid = "1a22d4ce-7765-49ea-b6f2-13c8438986a6"
3-
version = "1.6.1"
3+
version = "1.7.0"
44

55
[deps]
66
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

lib/BoundaryValueDiffEqMIRKN/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "BoundaryValueDiffEqMIRKN"
22
uuid = "9255f1d6-53bf-473e-b6bd-23f1ff009da4"
33
authors = ["Qingyu Qu <[email protected]>"]
4-
version = "1.5.1"
4+
version = "1.6.0"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

lib/BoundaryValueDiffEqMIRKN/src/mirkn.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Base.eltype(::MIRKNCache{iip, T}) where {iip, T} = T
2828

2929
function SciMLBase.__init(prob::SecondOrderBVProblem, alg::AbstractMIRKN; dt = 0.0,
3030
adaptive = false, abstol = 1e-6, controller = NoErrorControl(),
31-
nlsolve_kwargs = (; abstol = abstol / 100), kwargs...)
31+
nlsolve_kwargs = (; abstol = abstol), kwargs...)
3232
@set! alg.jac_alg = concrete_jacobian_algorithm(alg.jac_alg, prob, alg)
3333
iip = isinplace(prob)
3434
t₀, t₁ = prob.tspan

lib/BoundaryValueDiffEqShooting/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "BoundaryValueDiffEqShooting"
22
uuid = "ed55bfe0-3725-4db6-871e-a1dc9f42a757"
3-
version = "1.6.1"
3+
version = "1.7.0"
44

55
[deps]
66
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

0 commit comments

Comments
 (0)