pub struct MatrixSymmetryReducer<State> { /* private fields */ }Expand description
Finite symmetry generators carrying a common unitary matrix representation.
Scalar characters are the one-dimensional special case handled more
efficiently by SymmetryReducer. This type covers irreducible
representations of arbitrary finite dimension and constructs one selected
representation row without assuming that the generators commute.
Implementations§
Source§impl<State> MatrixSymmetryReducer<State>
impl<State> MatrixSymmetryReducer<State>
pub fn new(dimension: usize, selected_row: usize) -> Result<Self>
pub const fn dimension(&self) -> usize
pub const fn selected_row(&self) -> usize
pub fn with_map<M>(
self,
map: M,
representation: impl Into<Vec<Complex64>>,
) -> Result<Self>where
M: SymmetryMap<State> + 'static,
Source§impl<State> MatrixSymmetryReducer<State>
impl<State> MatrixSymmetryReducer<State>
Sourcepub fn subspace<Seed>(
&self,
seeds: &Seed,
) -> Result<MatrixSymmetrySubspace<State>>where
Seed: Basis<State = State>,
pub fn subspace<Seed>(
&self,
seeds: &Seed,
) -> Result<MatrixSymmetrySubspace<State>>where
Seed: Basis<State = State>,
Build the selected representation row from constrained seed states.
Each seed orbit is completed before projection, so generators may exchange additive sectors without forcing an unrestricted seed enumeration.
Trait Implementations§
Source§impl<State: Clone> Clone for MatrixSymmetryReducer<State>
impl<State: Clone> Clone for MatrixSymmetryReducer<State>
Source§fn clone(&self) -> MatrixSymmetryReducer<State>
fn clone(&self) -> MatrixSymmetryReducer<State>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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<State> Freeze for MatrixSymmetryReducer<State>
impl<State> !RefUnwindSafe for MatrixSymmetryReducer<State>
impl<State> Send for MatrixSymmetryReducer<State>
impl<State> Sync for MatrixSymmetryReducer<State>
impl<State> Unpin for MatrixSymmetryReducer<State>
impl<State> UnsafeUnpin for MatrixSymmetryReducer<State>
impl<State> !UnwindSafe for MatrixSymmetryReducer<State>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.