pub enum HtNode3DComplex {
Leaf {
dim: usize,
frame_re: Mat<f64>,
frame_im: Mat<f64>,
},
Interior {
left: usize,
right: usize,
transfer: Vec<f64>,
ranks: [usize; 3],
},
}Expand description
A node in the complex 3D HT dimension tree.
Leaf frames are complex (split real/imaginary storage); transfer tensors remain real because FFT only acts on leaves and does not change the rank structure.
Variants§
Leaf
Leaf: complex frame stored as separate real and imaginary matrices.
Fields
Interior
Interior: real transfer tensor (identical layout to HtNode3D::Interior).
Implementations§
Trait Implementations§
Source§impl Clone for HtNode3DComplex
impl Clone for HtNode3DComplex
Source§fn clone(&self) -> HtNode3DComplex
fn clone(&self) -> HtNode3DComplex
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 Freeze for HtNode3DComplex
impl RefUnwindSafe for HtNode3DComplex
impl Send for HtNode3DComplex
impl Sync for HtNode3DComplex
impl Unpin for HtNode3DComplex
impl UnsafeUnpin for HtNode3DComplex
impl UnwindSafe for HtNode3DComplex
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,
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T, U> Imply<T> for U
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more