@@ -391,8 +391,8 @@ drifts far from the integral of constant interpolation. In this interpolation ty
391
391
for a test based on the normalized standard deviation of the difference with respect
392
392
to the straight line (see [`looks_linear`](@ref)). Defaults to 1e-2.
393
393
"""
394
- struct SmoothedConstantInterpolation{uType, tType, IType, dType, cType, dmaxType, T, N } < :
395
- AbstractInterpolation{T, N }
394
+ struct SmoothedConstantInterpolation{uType, tType, IType, dType, cType, dmaxType, T} < :
395
+ AbstractInterpolation{T}
396
396
u:: uType
397
397
t:: tType
398
398
I:: IType
@@ -407,9 +407,8 @@ struct SmoothedConstantInterpolation{uType, tType, IType, dType, cType, dmaxType
407
407
u, t, I, p, d_max, extrapolation_left,
408
408
extrapolation_right, cache_parameters, assume_linear_t)
409
409
linear_lookup = seems_linear (assume_linear_t, t)
410
- N = get_output_dim (u)
411
410
new{typeof (u), typeof (t), typeof (I), typeof (p. d),
412
- typeof (p. c), typeof (d_max), eltype (u), N }(
411
+ typeof (p. c), typeof (d_max), eltype (u)}(
413
412
u, t, I, p, d_max, extrapolation_left, extrapolation_right,
414
413
Guesser (t), cache_parameters, linear_lookup)
415
414
end
0 commit comments