[][src]Struct argmin_core::NoOperator

pub struct NoOperator<T, U, H, J> { /* fields omitted */ }

Fake Operators for testing No-op operator with free choice of the types

Methods

impl<T, U, H, J> NoOperator<T, U, H, J>[src]

pub fn new() -> Self[src]

Constructor

Trait Implementations

impl<T, U, H, J> ArgminOp for NoOperator<T, U, H, J> where
    T: Clone + Default + Debug + Send + Sync + Serialize + DeserializeOwned,
    U: Clone + Default + Debug + Send + Sync + Serialize + DeserializeOwned,
    H: Clone + Default + Debug + Send + Sync + Serialize + DeserializeOwned,
    J: Clone + Default + Debug + Send + Sync + Serialize + DeserializeOwned
[src]

type Param = T

Type of the parameter vector

type Output = U

Output of the operator

type Hessian = H

Type of Hessian

type Jacobian = J

Type of Jacobian

fn apply(&self, _p: &Self::Param) -> Result<Self::Output, Error>[src]

Do nothing, really.

fn gradient(&self, _p: &Self::Param) -> Result<Self::Param, Error>[src]

Do nothing, really.

fn hessian(&self, _p: &Self::Param) -> Result<Self::Hessian, Error>[src]

Do nothing, really.

fn modify(&self, _p: &Self::Param, _t: f64) -> Result<Self::Param, Error>[src]

Do nothing, really.

fn jacobian(&self, _param: &Self::Param) -> Result<Self::Jacobian, Error>[src]

Computes the Hessian at the given parameters

impl<T: Ord, U: Ord, H: Ord, J: Ord> Ord for NoOperator<T, U, H, J>[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<T: Clone, U: Clone, H: Clone, J: Clone> Clone for NoOperator<T, U, H, J>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Copy, U: Copy, H: Copy, J: Copy> Copy for NoOperator<T, U, H, J>[src]

impl<T: Default, U: Default, H: Default, J: Default> Default for NoOperator<T, U, H, J>[src]

impl<T: PartialEq, U: PartialEq, H: PartialEq, J: PartialEq> PartialEq<NoOperator<T, U, H, J>> for NoOperator<T, U, H, J>[src]

impl<T: Eq, U: Eq, H: Eq, J: Eq> Eq for NoOperator<T, U, H, J>[src]

impl<T: PartialOrd, U: PartialOrd, H: PartialOrd, J: PartialOrd> PartialOrd<NoOperator<T, U, H, J>> for NoOperator<T, U, H, J>[src]

impl<T: Hash, U: Hash, H: Hash, J: Hash> Hash for NoOperator<T, U, H, J>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T: Debug, U: Debug, H: Debug, J: Debug> Debug for NoOperator<T, U, H, J>[src]

impl<T, U, H, J> Display for NoOperator<T, U, H, J>[src]

impl<T, U, H, J> Serialize for NoOperator<T, U, H, J>[src]

impl<'de, T, U, H, J> Deserialize<'de> for NoOperator<T, U, H, J>[src]

Auto Trait Implementations

impl<T, U, H, J> Sync for NoOperator<T, U, H, J> where
    H: Sync,
    J: Sync,
    T: Sync,
    U: Sync

impl<T, U, H, J> Unpin for NoOperator<T, U, H, J> where
    H: Unpin,
    J: Unpin,
    T: Unpin,
    U: Unpin

impl<T, U, H, J> Send for NoOperator<T, U, H, J> where
    H: Send,
    J: Send,
    T: Send,
    U: Send

impl<T, U, H, J> UnwindSafe for NoOperator<T, U, H, J> where
    H: UnwindSafe,
    J: UnwindSafe,
    T: UnwindSafe,
    U: UnwindSafe

impl<T, U, H, J> RefUnwindSafe for NoOperator<T, U, H, J> where
    H: RefUnwindSafe,
    J: RefUnwindSafe,
    T: RefUnwindSafe,
    U: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]