Skip to content

Commit 534f459

Browse files
hotfix to allow Any tolerance
1 parent a8dfe4f commit 534f459

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
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 = "0.1.7"
4+
version = "0.1.8"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

src/common.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ default_tol(::Type{T}) where T = √(eps(T))
7373
default_tol(::Type{Complex{T}}) where T = (eps(T))
7474
default_tol(::Type{<:Rational}) = 0
7575
default_tol(::Type{<:Integer}) = 0
76+
default_tol(::Type{Any}) = 0
7677

7778
function SciMLBase.init(prob::LinearProblem, alg::Union{SciMLLinearSolveAlgorithm,Nothing}, args...;
7879
alias_A = false, alias_b = false,

0 commit comments

Comments
 (0)