We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88b5402 commit 72e40e1Copy full SHA for 72e40e1
Project.toml
@@ -1,7 +1,7 @@
1
name = "SymbolicNumericIntegration"
2
uuid = "78aadeae-fbc0-11eb-17b6-c7ec0477ba9e"
3
authors = ["Shahriar Iravanian <[email protected]>"]
4
-version = "1.3.3"
+version = "1.3.4"
5
6
[deps]
7
DataDrivenDiffEq = "2445eb08-9709-466a-b3fc-47e12bd697a2"
src/sparse.jl
@@ -258,6 +258,7 @@ end
258
259
using NaNMath
260
261
+NaNMath.sqrt(x::Complex) = sqrt(x)
262
NaNMath.sin(x::Complex) = sin(x)
263
NaNMath.cos(x::Complex) = cos(x)
264
NaNMath.tan(x::Complex) = tan(x)
@@ -270,4 +271,3 @@ NaNMath.log2(x::Complex) = log2(x)
270
271
NaNMath.log10(x::Complex) = log10(x)
272
NaNMath.lgamma(x::Complex) = lgamma(x)
273
NaNMath.log1p(x::Complex) = log1p(x)
-
0 commit comments