otspot-core 0.4.0

Core implementation for otspot (LP/QP/MIP solver) — published as a dependency of the otspot facade
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! 疎行列・疎ベクトル演算モジュール
//!
//! CSC形式の疎行列・疎ベクトルを提供する。

mod compress;
mod csc;
mod vec;

// Public re-exports
pub use csc::CscMatrix;
pub use vec::SparseVec;