Skip to content

Commit

Permalink
Fix LLT solve with compressed hmat RHS
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilien Despres authored and dbarbier committed Dec 5, 2024
1 parent 368b88d commit ce0c73e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/h_matrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2670,7 +2670,7 @@ template<typename T> void HMatrix<T>::solve(
/* Solve LX=B, result in B */
this->solveLowerTriangularLeft(b, algo, Diag::NONUNIT, Uplo::LOWER);
/* Solve L^tX=B, result in B */
this->solveUpperTriangularLeft(b, algo, Diag::NONUNIT, Uplo::UPPER);
this->solveUpperTriangularLeft(b, algo, Diag::NONUNIT, Uplo::LOWER);
break;
default:
HMAT_ASSERT(false);
Expand Down

0 comments on commit ce0c73e

Please sign in to comment.