src/measures/base.rs

branch
dev
changeset 61
4f468d35fa29
parent 60
9738b51d90d7
child 62
32328a74c790
child 63
7a8a55fd41c0
--- a/src/measures/base.rs	Sun Apr 27 15:03:51 2025 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-//! Basic definitions for measures
-
-use serde::Serialize;
-use alg_tools::types::Num;
-use alg_tools::norms::{Norm, NormExponent};
-
-/// This is used with [`Norm::norm`] to indicate that a Radon norm is to be computed.
-#[derive(Copy,Clone,Serialize,Debug)]
-pub struct Radon;
-impl NormExponent for Radon {}
-
-/// A trait for (Radon) measures.
-///
-/// Currently has no methods, just the requirement that the Radon norm be implemented.
-pub trait Measure<F : Num> : Norm<F, Radon> {
-    type Domain;
-}
-
-/// Decomposition of measures
-pub struct MeasureDecomp;
-

mercurial