[][src]Struct argmin::prelude::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() -> NoOperator<T, U, H, J>[src]

Constructor

Trait Implementations

impl<T, U, H, J> Hash for NoOperator<T, U, H, J> where
    H: Hash,
    J: Hash,
    T: Hash,
    U: Hash
[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, U, H, J> PartialOrd<NoOperator<T, U, H, J>> for NoOperator<T, U, H, J> where
    H: PartialOrd<H>,
    J: PartialOrd<J>,
    T: PartialOrd<T>,
    U: PartialOrd<U>, 
[src]

impl<T, U, H, J> ArgminOp for NoOperator<T, U, H, J> where
    H: Clone + Default + Debug + Send + Sync + Serialize + DeserializeOwned,
    J: Clone + Default + Debug + Send + Sync + Serialize + DeserializeOwned,
    T: Clone + Default + Debug + Send + Sync + Serialize + DeserializeOwned,
    U: 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: &<NoOperator<T, U, H, J> as ArgminOp>::Param
) -> Result<<NoOperator<T, U, H, J> as ArgminOp>::Output, Error>
[src]

Do nothing, really.

fn gradient(
    &self,
    _p: &<NoOperator<T, U, H, J> as ArgminOp>::Param
) -> Result<<NoOperator<T, U, H, J> as ArgminOp>::Param, Error>
[src]

Do nothing, really.

fn hessian(
    &self,
    _p: &<NoOperator<T, U, H, J> as ArgminOp>::Param
) -> Result<<NoOperator<T, U, H, J> as ArgminOp>::Hessian, Error>
[src]

Do nothing, really.

fn modify(
    &self,
    _p: &<NoOperator<T, U, H, J> as ArgminOp>::Param,
    _t: f64
) -> Result<<NoOperator<T, U, H, J> as ArgminOp>::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, 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]

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

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

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

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

Performs copy-assignment from source. Read more

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

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

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

impl<T, U, H, J> Ord for NoOperator<T, U, H, J> where
    H: Ord,
    J: Ord,
    T: Ord,
    U: Ord
[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, U, H, J> Copy for NoOperator<T, U, H, J> where
    H: Copy,
    J: Copy,
    T: Copy,
    U: Copy
[src]

Auto Trait Implementations

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> Sync for NoOperator<T, U, H, J> where
    H: Sync,
    J: Sync,
    T: Sync,
    U: Sync

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<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