You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These tests from MeasureTheory.jl are currently failing:
@testset"Density measures and Radon-Nikodym"begin
x =randn()
let d =∫(𝒹(Cauchy(), Normal()), Normal())
@testlogdensityof(𝒹(d, Cauchy()), x) ≈0 atol =1e-12endlet f =𝒹(∫(x -> x^2, Normal()), Normal())
@testdensityof(f, x) ≈ x^2endlet d =∫exp(log𝒹(Cauchy(), Normal()), Normal())
@testlogdensity_def(d, Cauchy(), x) ≈0 atol=1e-12endlet f =𝒹(∫exp(x -> x^2, Normal()), Normal())
@testlogdensityof(f, x) ≈ x^2endend
To some degree this is syntactic - the way of writing these things has changed recently. But there may also be some bugs. Let's rework them and put them in MeasureBase.
The text was updated successfully, but these errors were encountered:
These tests from MeasureTheory.jl are currently failing:
To some degree this is syntactic - the way of writing these things has changed recently. But there may also be some bugs. Let's rework them and put them in MeasureBase.
The text was updated successfully, but these errors were encountered: