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/extrapolation/extrapolation.jl
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
type Extrapolation{T,N,ITPT,IT,GT,ET} <:AbstractExtrapolation{T,N,ITPT,IT,GT}
2
2
itp::ITPT
3
3
end
4
-
Extrapolation{T,ITPT,IT,GT,ET}(::Type{T}, N, itp::ITPT, ::Type{IT}, ::Type{GT}, et::ET) =
5
-
Extrapolation{T,N,ITPT,IT,GT,ET}(itp)
4
+
5
+
@deprecateExtrapolation{T,ITPT,IT,GT,ET}(::Type{T}, N, itp::ITPT, ::Type{IT}, ::Type{GT}, et::ET)Extrapolation{T,N,ITPT,IT,GT,ET}(itp)
6
6
7
7
Base.parent(A::Extrapolation) = A.itp
8
8
@@ -27,8 +27,8 @@ You can also combine schemes in tuples. For example, the scheme `(Linear(), Flat
27
27
28
28
Finally, you can specify different extrapolation behavior in different direction. `((Linear(),Flat()), Flat())` will extrapolate linearly in the first dimension if the index is too small, but use constant etrapolation if it is too large, and always use constant extrapolation in the second dimension.
0 commit comments