Skip to main content

CSMClass

Struct CSMClass 

Source
pub struct CSMClass {
    pub coefficients: BTreeMap<Partition, i64>,
    pub grassmannian: (usize, usize),
}
Expand description

CSM class of a constructible set, expanded in the Schubert basis of a Grassmannian.

c_SM(Z) = Σ_λ a_λ · σ_λ

where a_λ are integer coefficients.

Fields§

§coefficients: BTreeMap<Partition, i64>

Expansion coefficients in the Schubert basis: partition → coefficient

§grassmannian: (usize, usize)

Grassmannian parameters

Implementations§

Source§

impl CSMClass

Source

pub fn of_schubert_cell( partition: &[usize], grassmannian: (usize, usize), ) -> Self

CSM class of a Schubert cell Ω°_λ in Gr(k, n).

For a Schubert cell (open stratum), the CSM class is computed via inclusion-exclusion from the CSM classes of Schubert varieties:

c_SM(Ω°_λ) = Σ_{μ ≤ λ} (-1)^{|μ|-|λ|} c_SM(Ω_μ)

For the top cell (empty partition), c_SM = σ_∅ = [Gr].

§Contract
requires: partition fits in k × (n-k) box
ensures: euler_characteristic() == 1 for any cell
Source

pub fn of_schubert_variety( partition: &[usize], grassmannian: (usize, usize), ) -> Self

CSM class of a Schubert variety Ω_λ (closure of the cell).

c_SM(Ω_λ) = Σ_{μ ≥ λ} c_SM(Ω°_μ)

where the sum is over all partitions μ in the Bruhat order above λ.

§Contract
requires: partition fits in k × (n-k) box
ensures: result.coefficients is nonempty
Source

pub fn euler_characteristic(&self) -> i64

Euler characteristic: the degree of the CSM class.

Equal to the coefficient of the point class σ_{m^k} (fundamental class of the Grassmannian).

§Contract
ensures: for a Schubert cell, result == 1
Source

pub fn csm_intersection(&self, other: &CSMClass) -> CSMClass

Multiply two CSM classes via the intersection pairing.

Uses Littlewood-Richardson coefficients to expand the product in the Schubert basis.

§Contract
requires: self.grassmannian == other.grassmannian
ensures: result is the product in the Schubert basis ring

Trait Implementations§

Source§

impl Clone for CSMClass

Source§

fn clone(&self) -> CSMClass

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for CSMClass

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for CSMClass

Source§

fn eq(&self, other: &CSMClass) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for CSMClass

Source§

impl StructuralPartialEq for CSMClass

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.