Skip to content

Commit 1338118

Browse files
author
andre_ramos
committed
fix arg int64 bug
1 parent 81c93f2 commit 1338118

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/models/structural_model.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ function create_o_matrix(T::Int, steps_ahead::Int, stochastic_start::Int)::Matri
352352
end
353353

354354
"""
355-
create_ϕ(X_cycle::Matrix, T::Int, steps_ahead::Int64, ζ_ω_threshold::Int, stochastic_start::Int)::Matrix
355+
create_ϕ(X_cycle::Matrix, T::Int, steps_ahead::Int, ζ_ω_threshold::Int, stochastic_start::Int)::Matrix
356356
357357
Creates a matrix of innovations ϕ based on the input sizes, and the desired steps ahead (this is necessary for the forecast function).
358358
@@ -367,7 +367,7 @@ create_ϕ(X_cycle::Matrix, T::Int, steps_ahead::Int64, ζ_ω_threshold::Int, sto
367367
- `Matrix`: Matrix of innovations ϕ constructed based on the input sizes.
368368
"""
369369
function create_ϕ(
370-
c_matrix::Matrix, T::Int, steps_ahead::Int64, ζ_ω_threshold::Int, stochastic_start::Int
370+
c_matrix::Matrix, T::Int, steps_ahead::Int, ζ_ω_threshold::Int, stochastic_start::Int
371371
)::Matrix
372372
num_cols = 2 * (T - stochastic_start + 1)
373373
X = Matrix{Float64}(undef, T + steps_ahead, num_cols)

0 commit comments

Comments
 (0)