Skip to content

Commit 72e40e1

Browse files
NaNMath fixed
1 parent 88b5402 commit 72e40e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SymbolicNumericIntegration"
22
uuid = "78aadeae-fbc0-11eb-17b6-c7ec0477ba9e"
33
authors = ["Shahriar Iravanian <[email protected]>"]
4-
version = "1.3.3"
4+
version = "1.3.4"
55

66
[deps]
77
DataDrivenDiffEq = "2445eb08-9709-466a-b3fc-47e12bd697a2"

src/sparse.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,7 @@ end
258258

259259
using NaNMath
260260

261+
NaNMath.sqrt(x::Complex) = sqrt(x)
261262
NaNMath.sin(x::Complex) = sin(x)
262263
NaNMath.cos(x::Complex) = cos(x)
263264
NaNMath.tan(x::Complex) = tan(x)
@@ -270,4 +271,3 @@ NaNMath.log2(x::Complex) = log2(x)
270271
NaNMath.log10(x::Complex) = log10(x)
271272
NaNMath.lgamma(x::Complex) = lgamma(x)
272273
NaNMath.log1p(x::Complex) = log1p(x)
273-

0 commit comments

Comments
 (0)