Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit c9e8914

Browse files
Merge pull request #536 from SciML/nonlinearsolve
Remove nonlinearsolve dependency
2 parents 1d2b0ec + de48ddb commit c9e8914

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ LazyBandedMatrices = "d7e5e226-e90b-4449-9968-0f923699bf6f"
1414
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1515
LoopVectorization = "bdcacae8-1622-11e9-2a5c-532679323890"
1616
NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"
17-
NonlinearSolve = "8913a72c-1f9b-4ce2-8d82-65094dcecaec"
1817
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
1918
RuntimeGeneratedFunctions = "7e49a35a-f44a-4d26-94aa-eba1b4ca6b47"
2019
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
@@ -33,7 +32,6 @@ LazyArrays = "0.17, 0.18, 0.19, 0.20, 0.21, 0.22"
3332
LazyBandedMatrices = "0.5, 0.6, 0.7"
3433
LoopVectorization = "0.12"
3534
NNlib = "0.6, 0.7, 0.8"
36-
NonlinearSolve = "0.3.7"
3735
Requires = "1"
3836
RuntimeGeneratedFunctions = "0.4, 0.5"
3937
SciMLBase = "1.11"

test/DerivativeOperators/matrixfree.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ end
6363
@test mul!(zeros(2), A, [0.1, 0.1]) == [0.1, 0.2]
6464
@test mul!(zeros(2), C, [0.1, 0.1]) == [0.2, 0.4]
6565
@test_throws DimensionMismatch mul!(zeros(2, 3), A, zeros(3, 2))
66-
@test mul!(zeros(2, 2), A, [0.1 0.1; 0.1 0.1]) == [0.1 0.1 0.2 0.2]
67-
@test mul!(zeros(2, 2), C, [0.1 0.1; 0.1 0.1]) == [0.2 0.2 0.4 0.4]
66+
@test mul!(zeros(2, 2), A, [0.1 0.1; 0.1 0.1]) == [0.1 0.1; 0.2 0.2]
67+
@test mul!(zeros(2, 2), C, [0.1 0.1; 0.1 0.1]) == [0.2 0.2; 0.4 0.4]
6868
end
6969

7070
@testset "Matrix Free Operator example" begin

0 commit comments

Comments
 (0)