Skip to content

Commit c870f18

Browse files
committed
Add short doc of Lapack trait
1 parent c12e7f1 commit c870f18

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/lapack/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ use super::types::*;
2323

2424
pub type Pivot = Vec<i32>;
2525

26+
/// Trait for primitive types which implements LAPACK subroutines
2627
pub trait Lapack: OperatorNorm_ + QR_ + SVD_ + Solve_ + Solveh_ + Cholesky_ + Eigh_ + Triangular_ {}
2728

2829
impl Lapack for f32 {}

0 commit comments

Comments
 (0)