Skip to content

Commit f3ac9ca

Browse files
Merge pull request #137 from chriselrod/max-methods-1
max-methods=1
2 parents 2ab52d6 + b36940f commit f3ac9ca

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Project.toml

+1-1
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.2.0"
4+
version = "1.2.1"
55

66
[deps]
77
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"

src/NonlinearSolve.jl

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
module NonlinearSolve
2-
2+
if isdefined(Base, :Experimental) &&
3+
isdefined(Base.Experimental, Symbol("@max_methods"))
4+
@eval Base.Experimental.@max_methods 1
5+
end
36
using Reexport
47
using UnPack: @unpack
58
using FiniteDiff, ForwardDiff

0 commit comments

Comments
 (0)