31:6105b5cd8d89 | 52:f0e8704d3f0e |
---|---|
14 /// Currently has no methods, just the requirement that the Radon norm be implemented. | 14 /// Currently has no methods, just the requirement that the Radon norm be implemented. |
15 pub trait Measure<F : Num> : Norm<F, Radon> { | 15 pub trait Measure<F : Num> : Norm<F, Radon> { |
16 type Domain; | 16 type Domain; |
17 } | 17 } |
18 | 18 |
19 /// Decomposition of measures | |
20 pub struct MeasureDecomp; | |
21 |