We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddc1dbb commit 1bd98a9Copy full SHA for 1bd98a9
src/absolutecontinuity.jl
@@ -53,6 +53,17 @@ export representative
53
54
"""
55
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).
67
68
function representative(μ)
69
function f(μ)
0 commit comments