Skip to main content

QuantumGroup

Struct QuantumGroup 

Source
pub struct QuantumGroup {
    pub name: String,
    pub deformation_param: f64,
}
Expand description

A compact quantum group with deformation parameter q.

Quantum groups (Drinfeld, Woronowicz) are Hopf C*-algebras that deform classical Lie groups. At q = 1 one recovers the classical group.

Fields§

§name: String

Name of the underlying classical group (e.g. “SU(2)”, “SO(3)”).

§deformation_param: f64

Deformation parameter q (q = 1 gives the classical group).

Implementations§

Source§

impl QuantumGroup

Source

pub fn new(name: impl Into<String>, q: f64) -> Self

Construct the quantum group deformation of the named classical group.

Source

pub fn is_unimodular(&self) -> bool

A compact quantum group is unimodular when the Haar state is a trace.

Classical compact groups are always unimodular; quantum deformations need not be (e.g. SUq(2) for q ≠ 1 is not unimodular in general).

Source

pub fn classical_limit(&self) -> String

At q → 1 the quantum group specializes to the classical Lie group.

Source§

impl QuantumGroup

Source

pub fn haar_measure_exists(&self) -> bool

Returns true when a Haar measure (state) exists on the quantum group.

Every compact quantum group in the sense of Woronowicz has a unique Haar state (the analogue of the Haar measure on a compact group).

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.