//! Powell hybrid method trait for nonlinear systems.
use crateDType;
use crate;
use Result;
use Runtime;
use Tensor;
/// Powell hybrid method for systems of nonlinear equations.
///
/// Combines Newton steps with dogleg trust region fallback.
/// Uses finite-difference Jacobian with Broyden rank-1 updates
/// between full Jacobian recalculations.