pub struct RealProjectiveSpace<A: Algebra> {
algebra: Arc<A>,
pub min: i32,
pub max: Option<i32>,
pub clear_bottom: bool,
}Expand description
This is $\mathbb{RP}_{\mathrm{min}}^{\mathrm{max}}$. The cohomology is the subquotient of $\mathbb{F}_2[x^\pm]$ given by elements of degree between min and max (inclusive)
The clear_bottom option, if selected, mods out by the elements in the $A(2)$ submodule
generated by degrees less than min. This is useful for approximating $\mathrm{tmf} \wedge
\mathbb{RP}_{-\infty}^n$, c.f. Proposition 2.2 of Bailey and Ricka. Note that this quotient
always has minimum degree -1 mod 8.
Fields§
§algebra: Arc<A>§min: i32§max: Option<i32>§clear_bottom: boolImplementations§
Source§impl<A: Algebra> RealProjectiveSpace<A>
impl<A: Algebra> RealProjectiveSpace<A>
Trait Implementations§
Source§impl<A: Algebra> Display for RealProjectiveSpace<A>
impl<A: Algebra> Display for RealProjectiveSpace<A>
Source§impl<A: Algebra> Module for RealProjectiveSpace<A>
impl<A: Algebra> Module for RealProjectiveSpace<A>
type Algebra = A
Source§fn min_degree(&self) -> i32
fn min_degree(&self) -> i32
The minimum degree of the module, which is required to be bounded below
Source§fn max_computed_degree(&self) -> i32
fn max_computed_degree(&self) -> i32
The maximum
t for which the module is fully defined at t. See Module documentation
for more details.Source§fn basis_element_to_string(&self, degree: i32, _idx: usize) -> String
fn basis_element_to_string(&self, degree: i32, _idx: usize) -> String
The name of a basis element. This is useful for debugging and printing results.
fn act_on_basis( &self, result: FpSliceMut<'_>, coeff: u32, op_degree: i32, op_index: usize, mod_degree: i32, mod_index: usize, )
Source§fn max_degree(&self) -> Option<i32>
fn max_degree(&self) -> Option<i32>
max_degree is the a degree such that if t > max_degree, then self.dimension(t) = 0.Source§fn compute_basis(&self, degree: i32)
fn compute_basis(&self, degree: i32)
Compute internal data of the module so that we can query information up to degree
degree.
This should be run by the user whenever they want to query such information. Read moreSource§fn prime(&self) -> ValidPrime
fn prime(&self) -> ValidPrime
The prime the module is over, which should be equal to the prime of the algebra.
Source§fn max_generator_degree(&self) -> Option<i32>
fn max_generator_degree(&self) -> Option<i32>
Maximum degree of a generator under the Steenrod action. Every element in higher degree
must be obtainable from applying a Steenrod action to a lower degree element.
fn total_dimension(&self) -> usize
Source§fn act(
&self,
result: FpSliceMut<'_>,
coeff: u32,
op_degree: i32,
op_index: usize,
input_degree: i32,
input: FpSlice<'_>,
)
fn act( &self, result: FpSliceMut<'_>, coeff: u32, op_degree: i32, op_index: usize, input_degree: i32, input: FpSlice<'_>, )
The length of
input need not be equal to the dimension of the module in said degree.
Missing entries are interpreted to be 0, while extra entries must be zero. Read morefn act_by_element( &self, result: FpSliceMut<'_>, coeff: u32, op_degree: i32, op: FpSlice<'_>, input_degree: i32, input: FpSlice<'_>, )
fn act_by_element_on_basis( &self, result: FpSliceMut<'_>, coeff: u32, op_degree: i32, op: FpSlice<'_>, input_degree: i32, input_index: usize, )
Source§fn element_to_string(&self, degree: i32, element: FpSlice<'_>) -> String
fn element_to_string(&self, degree: i32, element: FpSlice<'_>) -> String
Gives the name of an element. The default implementation is derived from
Module::basis_element_to_string in the obvious way.Source§impl<A: Algebra> PartialEq for RealProjectiveSpace<A>
impl<A: Algebra> PartialEq for RealProjectiveSpace<A>
Source§impl<A: Algebra> ZeroModule for RealProjectiveSpace<A>
impl<A: Algebra> ZeroModule for RealProjectiveSpace<A>
fn zero_module(algebra: Arc<A>, min_degree: i32) -> Self
impl<A: Algebra> Eq for RealProjectiveSpace<A>
Auto Trait Implementations§
impl<A> Freeze for RealProjectiveSpace<A>
impl<A> RefUnwindSafe for RealProjectiveSpace<A>where
A: RefUnwindSafe,
impl<A> Send for RealProjectiveSpace<A>
impl<A> Sync for RealProjectiveSpace<A>
impl<A> Unpin for RealProjectiveSpace<A>
impl<A> UnwindSafe for RealProjectiveSpace<A>where
A: RefUnwindSafe,
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more