Skip to main content

FiniteDiff

Struct FiniteDiff 

Source
pub struct FiniteDiff<P> { /* private fields */ }
Expand description

Wraps a problem to synthesize its derivatives by finite differences.

Construct with FiniteDiff::new (central gradient/Hessian, forward Jacobian — see the module docs) and adjust with the builder methods. The wrapper delegates CostFunction / Residual / BoxConstraints to the inner problem and implements Gradient / Jacobian / Hessian via finite differences.

§Backends

Gradient is backend-generic (any V: Clone + VectorLen + VectorIndex). Jacobian and Hessian additionally require V: DenseMatrixFromFn, so they are available only for the matrix backends (nalgebra DVector → DMatrix, faer Col → Mat) — Vec<f64> and ndarray produce a compile-time error, mirroring the analytic Jacobian / Hessian coverage (tenet 5).

§Examples

Run a gradient solver against a problem that only implements CostFunction: wrapping it in FiniteDiff synthesizes the Gradient by central differences.

use basin::{BasicState, CostFunction, Executor, FiniteDiff, GradientDescent, GradientTolerance};

struct Sphere;
impl CostFunction for Sphere {
    type Param = Vec<f64>;
    type Output = f64;
    fn cost(&self, x: &Vec<f64>) -> f64 {
        x.iter().map(|xi| xi * xi).sum()
    }
}

let result = Executor::new(
    FiniteDiff::new(Sphere),
    GradientDescent::new(0.1),
    BasicState::new(vec![1.0, 1.0]),
)
.max_iter(1_000)
.terminate_on(GradientTolerance(1e-8))
.run();
assert!(result.cost() < 1e-10);

Implementations§

Source§

impl<P> FiniteDiff<P>

Source

pub fn new(problem: P) -> Self

Wrap problem with default settings: central-difference gradient and Hessian, forward-difference (MINPACK fdjac2) Jacobian, function_precision = f64::EPSILON, adaptive step sizes.

Source

pub fn gradient_method(self, method: Method) -> Self

Set the stencil used for the gradient (default Method::Central).

Source

pub fn jacobian_method(self, method: Method) -> Self

Set the stencil used for the Jacobian (default Method::Forward, the MINPACK fdjac2 parity choice).

Source

pub fn hessian_method(self, method: Method) -> Self

Set the stencil used for the Hessian (default Method::Central).

Source

pub fn function_precision(self, epsfcn: f64) -> Self

Set the assumed relative accuracy of the wrapped function (MINPACK’s epsfcn). Larger values widen the step, which helps when the function is noisy. Floored at f64::EPSILON. Default f64::EPSILON.

Source

pub fn with_step(self, h: f64) -> Self

Override the adaptive step rule with a fixed absolute step h used for every coordinate. Escape hatch — most callers should leave the adaptive |xⱼ|-scaled rule in place.

Source

pub fn get_ref(&self) -> &P

Borrow the wrapped problem.

Source

pub fn into_inner(self) -> P

Unwrap and return the inner problem.

Trait Implementations§

Source§

impl<P: BoxConstraints> BoxConstraints for FiniteDiff<P>

Source§

fn lower(&self) -> &Self::Param

Element-wise lower bound on Param. Same shape as Param.
Source§

fn upper(&self) -> &Self::Param

Element-wise upper bound on Param. Same shape as Param.
Source§

impl<P: Clone> Clone for FiniteDiff<P>

Source§

fn clone(&self) -> FiniteDiff<P>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<P: CostFunction> CostFunction for FiniteDiff<P>

Source§

type Param = <P as CostFunction>::Param

The parameter type the objective is defined over.
Source§

type Output = <P as CostFunction>::Output

Scalar cost type. In practice f64 (see AGENTS.md’s provisional choices).
Source§

fn cost(&self, param: &Self::Param) -> Self::Output

Evaluate the objective at param.
Source§

impl<P: Debug> Debug for FiniteDiff<P>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<P, V> Gradient for FiniteDiff<P>
where P: CostFunction<Param = V, Output = f64>, V: Clone + VectorLen + VectorIndex,

Source§

type Param = V

The parameter type the gradient is defined over (matches CostFunction::Param).
Source§

type Gradient = V

The gradient type. Typically the same as Param.
Source§

fn gradient(&self, param: &V) -> V

Evaluate the gradient at param.
Source§

impl<P, V> Hessian for FiniteDiff<P>
where P: CostFunction<Param = V, Output = f64>, V: Clone + VectorLen + VectorIndex + DenseMatrixFromFn,

Source§

type Param = V

The parameter type the Hessian is defined over (matches CostFunction::Param).
Source§

type Output = <V as DenseMatrixFromFn>::Matrix

The Hessian matrix type, shape n × n and symmetric.
Source§

fn hessian(&self, param: &V) -> Self::Output

Evaluate the Hessian at param.
Source§

impl<P, V> Jacobian for FiniteDiff<P>
where P: Residual<Param = V, Output = V>, V: Clone + VectorLen + VectorIndex + DenseMatrixFromFn,

Source§

type Param = V

The parameter type the Jacobian is defined over (matches Residual::Param).
Source§

type Output = <V as DenseMatrixFromFn>::Matrix

The Jacobian matrix type, shape m × n.
Source§

fn jacobian(&self, param: &V) -> Self::Output

Evaluate the Jacobian at param.
Source§

impl<P: Residual> Residual for FiniteDiff<P>

Source§

type Param = <P as Residual>::Param

The parameter type the residual is defined over (matches CostFunction::Param).
Source§

type Output = <P as Residual>::Output

The residual vector type. Length is the number of residuals m, independent of param.len() = n.
Source§

fn residual(&self, param: &Self::Param) -> Self::Output

Evaluate the residual at param.
Source§

impl<P: Copy> Copy for FiniteDiff<P>

Auto Trait Implementations§

§

impl<P> Freeze for FiniteDiff<P>
where P: Freeze,

§

impl<P> RefUnwindSafe for FiniteDiff<P>
where P: RefUnwindSafe,

§

impl<P> Send for FiniteDiff<P>
where P: Send,

§

impl<P> Sync for FiniteDiff<P>
where P: Sync,

§

impl<P> Unpin for FiniteDiff<P>
where P: Unpin,

§

impl<P> UnsafeUnpin for FiniteDiff<P>
where P: UnsafeUnpin,

§

impl<P> UnwindSafe for FiniteDiff<P>
where P: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> ByRef<T> for T

Source§

fn by_ref(&self) -> &T

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T, U> Imply<T> for U
where T: ?Sized, U: ?Sized,

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,