Skip to content

Commit

Permalink
Fix markdown table
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Oct 1, 2022
1 parent 1b1bc82 commit 7e61539
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lax/src/solve.rs
Expand Up @@ -79,14 +79,14 @@ impl_lu!(f32, lapack_sys::sgetrf_);
/// be reinterpreted as Fortran layout) and applying the
/// elementwise conjugate to `x` and `b`.
///
/// LAPACK correspondance
/// ----------------------
///
/// | f32 | f64 | c32 | c64 |
/// |:-------|:-------|:-------|:-------|
/// | sgetrs | dgetrs | cgetrs | zgetrs |
///
pub trait SolveImpl: Scalar {
/// LAPACK correspondance
/// ----------------------
///
/// | f32 | f64 | c32 | c64 |
/// |:-------|:-------|:-------|:-------|
/// | sgetrs | dgetrs | cgetrs | zgetrs |
///
fn solve(l: MatrixLayout, t: Transpose, a: &[Self], p: &Pivot, b: &mut [Self]) -> Result<()>;
}

Expand Down

0 comments on commit 7e61539

Please sign in to comment.