Struct argmin::cg::ConjugateGradient [] [src]

pub struct ConjugateGradient<'a> { /* fields omitted */ }

Conjugate Gradient method struct (duh)

Methods

impl<'a> ConjugateGradient<'a>
[src]

[src]

Return a ConjugateGradient struct

[src]

Set maximum number of iterations

Trait Implementations

impl<'a> ArgminSolver<'a> for ConjugateGradient<'a>
[src]

Parameter vector

Cost value

Hessian

Initial parameter(s)

Type of Problem (TODO: Trait!)

[src]

Initialize with a given problem and a starting point

[src]

Compute next point

[src]

Indicates whether any of the stopping criteria are met

[src]

Run initialization and iterations at once

impl<'a> Default for ConjugateGradient<'a>
[src]

[src]

Returns the "default value" for a type. Read more