pub trait Hessian {
// Required method
fn is_positive_definite(&self) -> bool;
}
Expand description
Common methods for Hessians.
Required Methods§
Sourcefn is_positive_definite(&self) -> bool
fn is_positive_definite(&self) -> bool
Checks whether the Hessian is positive-definite.