1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Multivariate optimization.
//!
//! See module [`optimize`] for multivariate optimization.
//! The other modules are (public) helper modules.

#![deny(unsafe_op_in_unsafe_fn)]
#![warn(missing_docs)]

pub mod distributions;
pub mod optimize;
pub mod splitter;
pub mod testfuncs;
pub mod triangular;

pub use optimize::*;