Skip to content

Commit

Permalink
hotfix to allow Any tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Dec 15, 2021
1 parent a8dfe4f commit 534f459
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LinearSolve"
uuid = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
authors = ["SciML"]
version = "0.1.7"
version = "0.1.8"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
1 change: 1 addition & 0 deletions src/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ default_tol(::Type{T}) where T = √(eps(T))
default_tol(::Type{Complex{T}}) where T = (eps(T))
default_tol(::Type{<:Rational}) = 0
default_tol(::Type{<:Integer}) = 0
default_tol(::Type{Any}) = 0

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

0 comments on commit 534f459

Please sign in to comment.