Skip to content

Commit 3744839

Browse files
add missing imports
Because otherwise the default linsolve won't work
1 parent fac1f02 commit 3744839

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Project.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ authors = ["Kanav Gupta <[email protected]>"]
44
version = "0.3.5"
55

66
[deps]
7+
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
78
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
89
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
10+
IterativeSolvers = "42fd0dbc-a981-5370-80f2-aaf504508153"
11+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
912
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
13+
RecursiveFactorization = "f2c3362d-daeb-58d1-803e-2bc74f2840b4"
1014
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1115
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
1216
Setfield = "efcf1570-3423-57d1-acb7-fd33fddbac46"

src/NonlinearSolve.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ using ForwardDiff: Dual
77
using Setfield
88
using StaticArrays
99
using RecursiveArrayTools
10+
using LinearAlgebra
11+
import ArrayInterface
12+
import IterativeSolvers
13+
import RecursiveFactorization
1014

1115
@reexport using SciMLBase
1216

0 commit comments

Comments
 (0)