Skip to content

Commit

Permalink
specify path
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah committed Dec 2, 2023
1 parent ce56c28 commit c24afcf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions faer-libs/faer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2428,7 +2428,7 @@ pub mod sparse {
symbolic: SymbolicCholesky<I>,
mat: SparseColMatRef<'_, I, E>,
side: Side,
) -> Result<Self, CholeskyError> {
) -> Result<Self, sparse::CholeskyError> {
let len_values = symbolic.inner.len_values();
let mut values = VecGroup::new();
values
Expand Down Expand Up @@ -2735,7 +2735,7 @@ pub mod sparse {
}

/// Returns the Cholesky decomposition of `self`. Only the provided side is accessed.
fn sp_cholesky(&self, side: Side) -> Result<solvers::Cholesky<I, E>, CholeskyError>;
fn sp_cholesky(&self, side: Side) -> Result<solvers::Cholesky<I, E>, sparse::CholeskyError>;

/// Returns the LU decomposition of `self` with partial (row) pivoting.
fn sp_lu(&self) -> Result<solvers::Lu<I, E>, LuError>;
Expand Down Expand Up @@ -2784,7 +2784,7 @@ pub mod sparse {

/// Returns the Cholesky decomposition of `self`. Only the provided side is accessed.
#[track_caller]
fn sp_cholesky(&self, side: Side) -> Result<solvers::Cholesky<I, E>, CholeskyError> {
fn sp_cholesky(&self, side: Side) -> Result<solvers::Cholesky<I, E>, sparse::CholeskyError> {
solvers::Cholesky::try_new_with_symbolic(
solvers::SymbolicCholesky::try_new(self.symbolic(), side)?,
*self,
Expand Down

0 comments on commit c24afcf

Please sign in to comment.