fix depr warning on linear_interpolation
Showing 2 of 2 files from the diff.
src/services/HeatmapSampler.jl
changed.
@@ -84,7 +84,8 @@
Loading
84 | 84 | @cast vec_preIS[j][i] := pts_preIS[i, j] |
|
85 | 85 | ||
86 | 86 | # weight the intermediate samples according to interpolation of raw data |
|
87 | - | hm = Interpolations.LinearInterpolation(domain, data) # interpolated heatmap |
|
87 | + | # interpolated heatmap |
|
88 | + | hm = Interpolations.linear_interpolation(domain, data) # depr .LinearInterpolation(..) |
|
88 | 89 | d_scalar = Vector{Float64}(undef, length(vec_preIS)) |
|
89 | 90 | ||
90 | 91 | # interpolate d_scalar for intermediate test points |
@@ -41,6 +41,7 @@
Loading
41 | 41 | ||
42 | 42 | ## TODO Consolidation WIP with FactorMetadata |
|
43 | 43 | # full list of variables connected to the factor |
|
44 | + | # TODO make sure this list is of the active hypo only |
|
44 | 45 | fullvariables::Vector{<:DFGVariable} |
|
45 | 46 | # which index is being solved for? |
|
46 | 47 | solvefor::Int |
Files | Coverage |
---|---|
src | 76.30% |
Project Totals (73 files) | 76.30% |
3623853040
3623853040
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.