Struct argmin::solver::conjugategradient::beta::PolakRibiere[][src]

pub struct PolakRibiere {}

Polak and Ribiere (PR) method TODO: Reference

Implementations

impl PolakRibiere[src]

pub fn new() -> Self[src]

Constructor

Trait Implementations

impl<T, F> ArgminNLCGBetaUpdate<T, F> for PolakRibiere where
    T: Clone + ArgminDot<T, F> + ArgminSub<T, T> + ArgminNorm<F>,
    F: ArgminFloat
[src]

impl Clone for PolakRibiere[src]

impl Copy for PolakRibiere[src]

impl Debug for PolakRibiere[src]

impl Default for PolakRibiere[src]

impl<'de> Deserialize<'de> for PolakRibiere[src]

impl Eq for PolakRibiere[src]

impl Hash for PolakRibiere[src]

impl Ord for PolakRibiere[src]

impl PartialEq<PolakRibiere> for PolakRibiere[src]

impl PartialOrd<PolakRibiere> for PolakRibiere[src]

impl Serialize for PolakRibiere[src]

impl StructuralEq for PolakRibiere[src]

impl StructuralPartialEq for PolakRibiere[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?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<V, T> VZip<V> for T where
    V: MultiLane<T>,