//! Levenberg-Marquardt algorithm trait for systems of nonlinear equations.
use crateDType;
use crate;
use Result;
use Runtime;
use Tensor;
/// Levenberg-Marquardt algorithm for systems of nonlinear equations.
///
/// A damped Newton method that interpolates between Newton's method and
/// gradient descent. More robust when initial guess is far from solution.