Skip to content

Commit dd66ce1

Browse files
committed
Make it a breaking change: autodiff args have different semantics
1 parent 78beabe commit dd66ce1

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-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 = "1.11.0"
4+
version = "2.0.0"
55

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

src/jacobian.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ end
66
(uf::JacobianWrapper)(u) = uf.f(u, uf.p)
77
(uf::JacobianWrapper)(res, u) = uf.f(res, u, uf.p)
88

9-
# FIXME: This is a deviation from older versions. Previously if sparsity and colorvec were
10-
# provided we would use a sparse AD. Right now it requires an explicit specification
119
sparsity_detection_alg(f, ad) = NoSparsityDetection()
1210
function sparsity_detection_alg(f, ad::AbstractSparseADType)
1311
if f.sparsity === nothing

0 commit comments

Comments
 (0)