Skip to content

Commit aecd854

Browse files
Merge pull request #355 from SciML/ap/fix_dae
Fix DAE Test Failures in OrdinaryDiffEq
2 parents 7e0685a + 9e0e0c4 commit aecd854

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NonlinearSolve"
22
uuid = "8913a72c-1f9b-4ce2-8d82-65094dcecaec"
33
authors = ["SciML"]
4-
version = "3.5.1"
4+
version = "3.5.2"
55

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

src/internal/linear_solve.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@ function LinearSolverCache(alg, linsolve, A, b, u; kwargs...)
5454
(A isa Diagonal) || (linsolve isa typeof(\))
5555
return LinearSolverCache(nothing, nothing, A, b, nothing, 0, 0)
5656
end
57-
@bb b_ = copy(b)
5857
@bb u_ = copy(u)
59-
linprob = LinearProblem(A, b_; u0 = u_, kwargs...)
58+
linprob = LinearProblem(A, b; u0 = u_, kwargs...)
6059

6160
weight = __init_ones(u)
6261
if __hasfield(alg, Val(:precs))

0 commit comments

Comments
 (0)