pub enum SymbolicExpander {
Custom(fn(usize) -> Expression),
}Expand description
Symbolic polynomial expander for function intelligence
Provides symbolic expansion capability for orthogonal polynomials, enabling conversion from recurrence-based representation to explicit polynomial forms in the Expression system.
Variants§
Custom(fn(usize) -> Expression)
Custom expansion function
Takes polynomial degree n and returns explicit symbolic expression
Trait Implementations§
Source§impl Clone for SymbolicExpander
impl Clone for SymbolicExpander
Source§fn clone(&self) -> SymbolicExpander
fn clone(&self) -> SymbolicExpander
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SymbolicExpander
impl Debug for SymbolicExpander
impl Copy for SymbolicExpander
Auto Trait Implementations§
impl Freeze for SymbolicExpander
impl RefUnwindSafe for SymbolicExpander
impl Send for SymbolicExpander
impl Sync for SymbolicExpander
impl Unpin for SymbolicExpander
impl UnwindSafe for SymbolicExpander
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> 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