@@ -15,7 +15,6 @@ using MeasureBase: mintegrate, mintegrate_exp, density_rel, logdensity_rel
1515using InverseFunctions: inverse
1616using Reexport: @reexport
1717
18-
1918@doc raw """
2019 ⋄(f, μ::AbstractMeasure) = pushfwd(f, μ)
2120
@@ -33,7 +32,6 @@ Also see [`ν ⊙ f`](@ref), the pullback operator.
3332⋄ (f, μ:: AbstractMeasure ) = pushfwd (f, μ)
3433export ⋄
3534
36-
3735@doc raw """
3836 ⊙(ν::AbstractMeasure, f) = pullbck(f, ν)
3937
@@ -55,7 +53,6 @@ Also see [f ⋄ μ](@ref), the pushforward operator.
5553⊙ (ν:: AbstractMeasure , f) = pullbck (f, ν)
5654export ⊙
5755
58-
5956"""
6057 μ ▷ k = mbind(k, μ)
6158
@@ -71,10 +68,9 @@ passing functions as the first argument. `▷`, on the other hand, takes
7168its arguments in the order common for monadic binds in functional
7269programming (like the Haskell `>>=` operator) and mathematics.
7370"""
74- ▷ (μ:: AbstractMeasure ,k) = mbind (k, μ)
71+ ▷ (μ:: AbstractMeasure , k) = mbind (k, μ)
7572export ▷
7673
77-
7874# ToDo: Use `⨂` instead of `⊗` for better readability?
7975"""
8076 ⊗(μs::AbstractMeasure...) = productmeasure(μs)
@@ -86,7 +82,6 @@ See [`productmeasure(μs)`](@ref) for details.
8682⊗ (μs:: AbstractMeasure... ) = productmeasure (μs)
8783export ⊗
8884
89-
9085"""
9186 ∫(f, μ::AbstractMeasure) = mintegrate(f, μ)
9287
@@ -98,7 +93,6 @@ See [`mintegrate(f, μ)`](@ref) for details.
9893∫ (f, μ:: AbstractMeasure ) = mintegrate (f, μ)
9994export ∫
10095
101-
10296"""
10397 ∫exp(f, μ::AbstractMeasure) = mintegrate_exp(f, μ)
10498
@@ -110,7 +104,6 @@ See [`mintegrate_exp(f, μ)`](@ref) for details.
110104∫exp (f, μ:: AbstractMeasure ) = mintegrate_exp (f, μ)
111105export ∫exp
112106
113-
114107"""
115108 𝒹(ν, μ) = density_rel(ν, μ)
116109
@@ -123,8 +116,6 @@ For details, see [`density_rel(ν, μ)`}(@ref).
123116𝒹 (ν, μ:: AbstractMeasure ) = density_rel (ν, μ)
124117export 𝒹
125118
126-
127-
128119"""
129120 log𝒹(ν, μ) = logdensity_rel(ν, μ)
130121
@@ -137,5 +128,4 @@ For details, see [`logdensity_rel(ν, μ)`}(@ref).
137128log𝒹 (ν, μ:: AbstractMeasure ) = logdensity_rel (ν, μ)
138129export log𝒹
139130
140-
141131end # module MeasureOperators
0 commit comments