clarabel 0.11.1

Clarabel Conic Interior Point Solver for Rust / Python
Documentation
// 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
// : ffi interfaces for C bindings etc

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

pub mod ffi;

//partially flatten top level pieces

mod settings;
mod solver;
pub use settings::*;
pub use solver::*;