Skip to content

Commit

Permalink
add qme to filter calls
Browse files Browse the repository at this point in the history
  • Loading branch information
thorek1 committed Dec 18, 2024
1 parent 33e3829 commit bbc35aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/filter/inversion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3491,6 +3491,7 @@ function filter_data_with_model(𝓂::β„³,
data_in_deviations::KeyedArray{Float64},
::Val{:second_order}, # algo
::Val{:inversion}; # filter
quadratic_matrix_equation_solver::Symbol = :schur,
warmup_iterations::Int = 0,
filter_algorithm::Symbol = :LagrangeNewton,
smooth::Bool = true,
Expand Down Expand Up @@ -3706,6 +3707,7 @@ function filter_data_with_model(𝓂::β„³,
data_in_deviations::KeyedArray{Float64},
::Val{:pruned_second_order}, # algo
::Val{:inversion}; # filter
quadratic_matrix_equation_solver::Symbol = :schur,
warmup_iterations::Int = 0,
filter_algorithm::Symbol = :LagrangeNewton,
smooth::Bool = true,
Expand Down Expand Up @@ -3979,6 +3981,7 @@ function filter_data_with_model(𝓂::β„³,
data_in_deviations::KeyedArray{Float64},
::Val{:third_order}, # algo
::Val{:inversion}; # filter
quadratic_matrix_equation_solver::Symbol = :schur,
warmup_iterations::Int = 0,
filter_algorithm::Symbol = :LagrangeNewton,
smooth::Bool = true,
Expand Down Expand Up @@ -4289,6 +4292,7 @@ function filter_data_with_model(𝓂::β„³,
data_in_deviations::KeyedArray{Float64},
::Val{:pruned_third_order}, # algo
::Val{:inversion}; # filter
quadratic_matrix_equation_solver::Symbol = :schur,
warmup_iterations::Int = 0,
filter_algorithm::Symbol = :LagrangeNewton,
smooth::Bool = true,
Expand Down
1 change: 1 addition & 0 deletions src/filter/kalman.jl
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,7 @@ function filter_data_with_model(𝓂::β„³,
data_in_deviations::KeyedArray{Float64},
::Val{:first_order}, # algo
::Val{:kalman}; # filter
quadratic_matrix_equation_solver::Symbol = :schur,
warmup_iterations::Int = 0,
smooth::Bool = true,
verbose::Bool = false)
Expand Down

0 comments on commit bbc35aa

Please sign in to comment.