You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/deprecated.jl
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,19 @@ end
15
15
=#
16
16
17
17
export FFTCorrelation
18
+
export sparse_to_dense, dense_to_sparse
18
19
19
20
FFTCorrelation() =error(
20
21
"`FFTCorrelation` has been deprecated and will be removed in next major release, please use `spectrum_correlation_fft` to calculate the spectrum with FFT method instead.",
21
22
)
22
23
24
+
sparse_to_dense(args...) =error(
25
+
"`sparse_to_dense` has been deprecated and will be removed in next major release, please use `to_dense` instead.",
26
+
)
27
+
dense_to_sparse(args...) =error(
28
+
"`dense_to_sparse` has been deprecated and will be removed in next major release, please use `to_sparse` instead.",
0 commit comments