Skip to content

Commit 7f248b8

Browse files
jensmaurertkoeppe
authored andcommitted
[linalg] Fix order of template parameters for symmetric_matrix_rank_k_update
1 parent dac6839 commit 7f248b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/numerics.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11054,7 +11054,7 @@
1105411054
// rank-k symmetric matrix update
1105511055
template<class Scalar, @\exposconcept{in-matrix}@ InMat, @\exposconcept{possibly-packed-inout-matrix}@ InOutMat, class Triangle>
1105611056
void symmetric_matrix_rank_k_update(Scalar alpha, InMat A, InOutMat C, Triangle t);
11057-
template<class Scalar, class ExecutionPolicy,
11057+
template<class ExecutionPolicy, class Scalar,
1105811058
@\exposconcept{in-matrix}@ InMat, @\exposconcept{possibly-packed-inout-matrix}@ InOutMat, class Triangle>
1105911059
void symmetric_matrix_rank_k_update(ExecutionPolicy&& exec,
1106011060
Scalar alpha, InMat A, InOutMat C, Triangle t);
@@ -15019,7 +15019,7 @@
1501915019
\begin{itemdecl}
1502015020
template<class Scalar, @\exposconcept{in-matrix}@ InMat, @\exposconcept{possibly-packed-inout-matrix}@ InOutMat, class Triangle>
1502115021
void symmetric_matrix_rank_k_update(Scalar alpha, InMat A, InOutMat C, Triangle t);
15022-
template<class Scalar, class ExecutionPolicy,
15022+
template<class ExecutionPolicy, class Scalar,
1502315023
@\exposconcept{in-matrix}@ InMat, @\exposconcept{possibly-packed-inout-matrix}@ InOutMat, class Triangle>
1502415024
void symmetric_matrix_rank_k_update(ExecutionPolicy&& exec,
1502515025
Scalar alpha, InMat A, InOutMat C, Triangle t);

0 commit comments

Comments
 (0)