solvr 0.2.0-beta.2

Advanced computing library for real-world problem solving - optimization, differential equations, interpolation, statistics, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Constrained optimization algorithms.
//!
//! Provides SLSQP, COBYLA, and trust-constr methods for optimization
//! with equality/inequality constraints and variable bounds.

pub mod cpu;
pub mod impl_generic;
pub mod traits;

#[cfg(feature = "cuda")]
pub mod cuda;

#[cfg(feature = "wgpu")]
pub mod wgpu;

pub use traits::*;