clarabel 0.11.1

Clarabel Conic Interior Point Solver for Rust / Python
Documentation
//! Implementation of core types for the standard problem format
//! described in the documentation [main page](crate).

#![allow(non_snake_case)]

/// C compatible FFI interfaces for the default solver implementation
pub mod ffi;

mod data_updating;
mod equilibration;
mod info;
mod info_print;
mod kktsystem;
mod presolver;
mod problemdata;
mod residuals;
mod settings;
mod solution;
mod solver;
mod variables;

// export flattened
pub use data_updating::*;
pub use equilibration::*;
pub use info::*;
pub use kktsystem::*;
pub(crate) use presolver::*;
pub use problemdata::*;
pub use residuals::*;
pub use settings::*;
pub use solution::*;
pub use solver::*;
pub use variables::*;

#[cfg(feature = "serde")]
mod json;