Skip to main content

FredholmModule

Struct FredholmModule 

Source
pub struct FredholmModule {
    pub algebra: String,
    pub hilbert_space: String,
    pub operator: String,
    pub is_even: bool,
}
Expand description

A Fredholm module (A, H, F) representing a K-homology class.

A Fredholm module consists of a -representation of A on H together with a bounded operator F = F with F² − 1 compact and [F, a] compact for all a ∈ A.

Fields§

§algebra: String

Name of the represented C*-algebra.

§hilbert_space: String

Name of the Hilbert space.

§operator: String

Name/description of the Fredholm operator F.

§is_even: bool

Whether the module is even-graded (existence of a grading operator γ).

Implementations§

Source§

impl FredholmModule

Source

pub fn new( algebra: impl Into<String>, hilbert_space: impl Into<String>, operator: impl Into<String>, is_even: bool, ) -> Self

Construct a Fredholm module.

Source

pub fn index(&self) -> i64

The Fredholm index of the module: index(P_+ F P_+) for the even case.

Source

pub fn pairing_with_k_theory(&self, element: f64) -> f64

Pairing of the Fredholm module with a K-theory element (a projection p ∈ M_n(A)).

The pairing ⟨[F], [p]⟩ = index(p F p) is the analytic index.

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> 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, 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.