A pure Rust framework and implementation of (derivative-free) methods for solving nonlinear (bound-constrained) systems of equations.
Warning: The code and API are still quite rough. Expect changes.
This library provides a variety of solvers of nonlinear equation systems with n equations and n unknowns written entirely in Rust. Bound constraints for variables are supported first-class, which is useful for engineering applications. All solvers implement the same interface which is designed to give full control over the process and allows to combine different components to achieve the desired solution. The implemented methods are historically-proven numerical methods or global optimization algorithms.
The convergence of the numerical methods is tested on several problems and the implementation is benchmarked against with GSL library.
Listed not in order of priority.
Licensed under MIT.
There are gsl-wrapper
and gsl-sys
crates which are licensed under the
GPLv3 identically as
GSL itself. This code is part of the
repository, but is not part of the Gomez library. Its purpose is solely for
comparison in Gomez benchmarks.