Skip to content

Commit af09c4e

Browse files
Merge pull request #264 from chriselrod/max-methods-1
max-methods=1
2 parents e31e09f + 00c65f2 commit af09c4e

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 = "LinearSolve"
22
uuid = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
33
authors = ["SciML"]
4-
version = "1.34.0"
4+
version = "1.34.1"
55

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

src/LinearSolve.jl

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
module LinearSolve
2-
2+
if isdefined(Base, :Experimental) &&
3+
isdefined(Base.Experimental, Symbol("@max_methods"))
4+
@eval Base.Experimental.@max_methods 1
5+
end
36
using ArrayInterfaceCore
47
using RecursiveFactorization
58
using Base: cache_dependencies, Bool

0 commit comments

Comments
 (0)