`merge_correlations!` should support `SampledCorrelationsStatic`
bug
This issue was identified by Paul Neves on Slack. Maybe this implementation will work:
```jl
function merge_correlations(scs::Vector{SampledCorrelationsStatic})
sc_merged = merge_correlations([sc.parent for sc in scs])
return Sunny.SampledCorrelationsStatic(sc_merged)
end
```
0 条评论