pub struct Unimodular<A, B = A>(/* private fields */);Expand description
A state acted on by the matrix exponential, X_{n+1} = exp(increment) X_n,
staying on the unimodular group (det = 1) whenever the increment is
trace-free. The state maps B → A while its algebra element maps A → A,
so F_p (Reference → Intermediate) is Unimodular<Intermediate, Reference>.
Trait Implementations§
Source§impl<A, B> Integrable for Unimodular<A, B>where
TensorRank2<3, A, B, Dimensionless>: Tensor,
TensorRank2<3, A, A, Dimensionless>: Tensor,
for<'a> TensorRank2<3, A, A, Dimensionless>: Mul<&'a TensorRank2<3, A, B, Dimensionless>, Output = TensorRank2<3, A, B, Dimensionless>>,
impl<A, B> Integrable for Unimodular<A, B>where
TensorRank2<3, A, B, Dimensionless>: Tensor,
TensorRank2<3, A, A, Dimensionless>: Tensor,
for<'a> TensorRank2<3, A, A, Dimensionless>: Mul<&'a TensorRank2<3, A, B, Dimensionless>, Output = TensorRank2<3, A, B, Dimensionless>>,
Source§type Point = TensorRank2<3, A, B>
type Point = TensorRank2<3, A, B>
The state value this field carries.
Source§type Increment = TensorRank2<3, A, A>
type Increment = TensorRank2<3, A, A>
The tangent/algebra element that advances a
Self::Point.Source§fn reconstruct(
base: &Self::Point,
increment: &Self::Increment,
) -> Result<Self::Point, TensorError>
fn reconstruct( base: &Self::Point, increment: &Self::Increment, ) -> Result<Self::Point, TensorError>
Advances
base by increment.Auto Trait Implementations§
impl<A, B> Freeze for Unimodular<A, B>
impl<A, B> RefUnwindSafe for Unimodular<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for Unimodular<A, B>
impl<A, B> Sync for Unimodular<A, B>
impl<A, B> Unpin for Unimodular<A, B>
impl<A, B> UnsafeUnpin for Unimodular<A, B>
impl<A, B> UnwindSafe for Unimodular<A, B>where
A: UnwindSafe,
B: UnwindSafe,
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