Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ struct Strategy <: EstimationStrategy
dp::Union{Nothing, AbstractVector} #DistributionDerivative
end

Strategy(; x = nothing, p = nothing, dp = nothing) = Strategy(x, p, dp)
Strategy(; x = nothing, p = nothing, dp = nothing) = Strategy(Vector(x), p, dp)

function GeneralEstimation(x, p, dp)
return Strategy(x, p, dp)
return Strategy(Vector(x), p, dp)
end

include("AdaptiveEstimation/AdaptiveEstimation.jl")
Loading