Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
285 changes: 0 additions & 285 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/cnvx-math/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ keywords = { workspace = true }
readme = { workspace = true }

[dependencies]
nalgebra = { workspace = true }

[lints]
workspace = true
6 changes: 3 additions & 3 deletions crates/cnvx-math/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
//! # CNVX Math
//!
//! Linear algebra utilities for LP solvers and numerical algorithms.
//! Provides matrix types and traits used in simplex computations and
//! other numerical routines.
//! Provides native matrix types and traits used in simplex computations and
//! other numerical routines without relying on external heavy dependencies.
//!
//! # Modules
//!
//! - [`matrix`]: Defines [`DenseMatrix`] and the [`Matrix`] trait for linear algebra operations.

pub mod matrix;

pub use matrix::{DenseMatrix, MatrixWrapper as Matrix, SparseMatrix};
pub use matrix::{DenseMatrix, Matrix, SparseMatrix};
Loading