Skip to content

Commit

Permalink
[minor] Removed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
soumyasen1809 committed Sep 30, 2024
1 parent 0ed08b3 commit 812bdbe
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/complex/matrix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1873,16 +1873,9 @@ pub trait LinearAlgebra {
fn back_subs(&self, b: &Vec<Complex<f64>>) -> Vec<Complex<f64>>;
fn forward_subs(&self, b: &Vec<Complex<f64>>) -> Vec<Complex<f64>>;
fn lu(&self) -> PQLU;
// fn waz(&self, d_form: Form) -> Option<WAZD>;
// fn qr(&self) -> QR;
// fn svd(&self) -> SVD;
// #[cfg(feature = "O3")]
// fn cholesky(&self, uplo: UPLO) -> ComplexMatrix;
// fn rref(&self) -> ComplexMatrix;
fn det(&self) -> Complex<f64>;
fn block(&self) -> (ComplexMatrix, ComplexMatrix, ComplexMatrix, ComplexMatrix);
fn inv(&self) -> ComplexMatrix;
// fn pseudo_inv(&self) -> ComplexMatrix;
fn solve(&self, b: &Vec<Complex<f64>>, sk: SolveKind) -> Vec<Complex<f64>>;
fn solve_mat(&self, m: &ComplexMatrix, sk: SolveKind) -> ComplexMatrix;
fn is_symmetric(&self) -> bool;
Expand Down

0 comments on commit 812bdbe

Please sign in to comment.