Skip to content

Commit 1bd98a9

Browse files
committed
docstring
1 parent ddc1dbb commit 1bd98a9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/absolutecontinuity.jl

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,17 @@ export representative
5353

5454
"""
5555
representative(μ::AbstractMeasure) -> AbstractMeasure
56+
57+
We need to be able to compute `μ ≪ ν` for each `μ` and `ν`. To do this directly
58+
would require a huge number of methods (quadratic in the number of defined
59+
measures).
60+
61+
This function is a way around that. When defining a new measure `μ`, you should
62+
also find some equivalent measure `ρ` that's "as primitive as possible".
63+
64+
If possible, `ρ` should be a `PrimitiveMeasure`, or a `Product` of these. If
65+
not, it should be a transform (`Pushforward` or `Pullback`) of a
66+
`PrimitiveMeasure` (or `Product` of these).
5667
"""
5768
function representative(μ)
5869
function f(μ)

0 commit comments

Comments
 (0)