clarabel 0.3.0

Clarabel Conic Interior Point Solver for Rust / Python
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//package together all of the following and re-export
//in a partially flattened structure :
// : core component traits
// : cone traits and standard cone implementations
// : kkt solver engines
// : user settings
// : main solver implementation

pub mod cones;
pub mod kktsolvers;
pub mod traits;

//partially flatten top level pieces
mod settings;
mod solver;
pub use settings::*;
pub use solver::*;