@@ -41,8 +41,8 @@ struct LinearInterpolationIntInv{uType, tType, itpType, T} <:
41
41
extrapolation_right:: ExtrapolationType.T
42
42
iguesser:: Guesser{tType}
43
43
itp:: itpType
44
- function LinearInterpolationIntInv (u, t, A, extrapolation_left = A . extrapolation_left ,
45
- extrapolation_right = A . extrapolation_right )
44
+ function LinearInterpolationIntInv (u, t, A, extrapolation_left,
45
+ extrapolation_right)
46
46
new {typeof(u), typeof(t), typeof(A), eltype(u)} (
47
47
u, t, extrapolation_left, extrapolation_right, Guesser (t), A)
48
48
end
@@ -98,8 +98,7 @@ struct ConstantInterpolationIntInv{uType, tType, itpType, T} <:
98
98
iguesser:: Guesser{tType}
99
99
itp:: itpType
100
100
function ConstantInterpolationIntInv (
101
- u, t, A, extrapolation_left = A. extrapolation_left,
102
- extrapolation_right = A. extrapolation_right)
101
+ u, t, A, extrapolation_left, extrapolation_right)
103
102
new {typeof(u), typeof(t), typeof(A), eltype(u)} (
104
103
u, t, extrapolation_left, extrapolation_right, Guesser (t), A
105
104
)
0 commit comments