Skip to content

Commit

Permalink
Fix a BigFloat bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch committed Oct 25, 2023
1 parent ee50738 commit 481baed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/caches.jl
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ function OrdinaryDiffEq.alg_cache(

# Initial State
initial_variance = ones(uElType, q + 1)
μ0 = Array{uElType}(calloc, D)
μ0 = uElType <: LinearAlgebra.BlasFloat ? Array{uElType}(calloc, D) : zeros(uElType, D)
Σ0 = PSDMatrix(
to_factorized_matrix(
FAC,
Expand Down

0 comments on commit 481baed

Please sign in to comment.