Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
goulart-paul committed Jul 20, 2022
1 parent 13f6193 commit 560468c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/clarabel_algebra/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use num_traits::{Float, FromPrimitive, NumAssign};

// PJG: This needs to be configurable
// Here we specify the particular algebra implementation
// For now, we only provide a handwritten interface.
mod native;
pub use native::*;

Expand Down
2 changes: 1 addition & 1 deletion crates/clarabel_qdldl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub struct QDLDLFactorisation<T = f64> {
// permutation vector
perm: Vec<usize>,
// inverse permutation
#[allow(dead_code)] //PJG: unused because we call ipermute in solve instead. Keep?
#[allow(dead_code)] //PJG: unused because we call ipermute in solve instead. Keep anyway?
iperm: Vec<usize>,
// lower triangular factor
L: CscMatrix<T>,
Expand Down
1 change: 1 addition & 0 deletions rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Just use defaults for everything...

0 comments on commit 560468c

Please sign in to comment.