Skip to content

Commit 8ce7208

Browse files
committed
Removed unnecessary inline
1 parent 3060b32 commit 8ce7208

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/model_validation.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ function sup_wald(its::InterruptedTimeSeries; low=0.15, high=0.85, n=1000)
298298
for idx in low_idx:high_idx
299299
t = reduce(vcat, (zeros(idx), ones(size(x, 1) - idx)))
300300
new_x = reduce(hcat, (x, t))
301-
@inline β, ŷ = @fastmath new_x \ y, new_x * (new_x \ y)
301+
β, ŷ = @fastmath new_x \ y, new_x * (new_x \ y)
302302
se = @fastmath sqrt(1 / (size(x, 1) - 2)) * (sum(y .- ŷ)^2 / sum(t .- mean(t))^2)
303303
wald_candidate = last(β) / se
304304

0 commit comments

Comments
 (0)