-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1716 from JuliaRobotics/23Q2/twig/varValsAll_ref
rework ccw.varValsAll memory for static arrays
- Loading branch information
Showing
30 changed files
with
492 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
|
||
Base.@kwdef struct HypoRecipe | ||
certainidx::Vector{Int} | ||
allelements::Vector{Vector{Int}} | ||
activehypo::Vector{Tuple{Int,Vector{Int}}} | ||
mhidx::Vector{Int} | ||
end | ||
|
||
Base.@kwdef struct HypoRecipeCompute{ | ||
HP <: Union{Nothing, <:Distributions.Categorical{Float64, <:AbstractVector{Float64}}}, | ||
CH <: Union{Nothing, <:AbstractVector{<:Integer}}, | ||
} | ||
""" multi hypothesis settings #NOTE no need for a parameter as type is known from `parseusermultihypo` """ | ||
hypotheses::HP = nothing | ||
""" categorical to select which hypothesis is being considered during convolution operation """ | ||
certainhypo::CH = nothing | ||
""" subsection indices to select which params should be used for this hypothesis evaluation """ | ||
activehypo::Vector{Int} = Int[] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.