pub struct FourierRestrictionData {
pub manifold: String,
pub dimension: usize,
pub stein_tomas_p: f64,
}Expand description
Data for the Fourier restriction problem.
Fields§
§manifold: StringManifold/hypersurface.
dimension: usizeDimension n.
stein_tomas_p: f64Stein-Tomas exponent p_0 = 2(n+1)/(n-1).
Implementations§
Source§impl FourierRestrictionData
impl FourierRestrictionData
Sourcepub fn stein_tomas_statement(&self) -> String
pub fn stein_tomas_statement(&self) -> String
Stein-Tomas theorem: restriction R_S: L^{p’} → L^2(S, dσ) bounded for p’ <= p_0.
Sourcepub fn decoupling_description(&self) -> String
pub fn decoupling_description(&self) -> String
Decoupling theorem connection (Bourgain-Demeter).
Sourcepub fn endpoint_holds(&self) -> bool
pub fn endpoint_holds(&self) -> bool
Checks if the endpoint Stein-Tomas holds.
Trait Implementations§
Source§impl Clone for FourierRestrictionData
impl Clone for FourierRestrictionData
Source§fn clone(&self) -> FourierRestrictionData
fn clone(&self) -> FourierRestrictionData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FourierRestrictionData
impl RefUnwindSafe for FourierRestrictionData
impl Send for FourierRestrictionData
impl Sync for FourierRestrictionData
impl Unpin for FourierRestrictionData
impl UnsafeUnpin for FourierRestrictionData
impl UnwindSafe for FourierRestrictionData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more