Skip to content

Commit

Permalink
[linalg.syn] Fix return type of the dot function
Browse files Browse the repository at this point in the history
  • Loading branch information
jensmaurer committed Nov 17, 2023
1 parent 63f25a3 commit 47b2f70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -10573,10 +10573,10 @@

// \ref{linalg.algs.blas1.dot}, dot product of two vectors
template<@\exposconcept{in-vector}@ InVec1, @\exposconcept{in-vector}@ InVec2, class Scalar>
T dot(InVec1 v1, InVec2 v2, Scalar init);
Scalar dot(InVec1 v1, InVec2 v2, Scalar init);
template<class ExecutionPolicy, @\exposconcept{in-vector}@ InVec1, @\exposconcept{in-vector}@ InVec2, class Scalar>
T dot(ExecutionPolicy&& exec,
InVec1 v1, InVec2 v2, Scalar init);
Scalar dot(ExecutionPolicy&& exec,
InVec1 v1, InVec2 v2, Scalar init);
template<@\exposconcept{in-vector}@ InVec1, @\exposconcept{in-vector}@ InVec2>
auto dot(InVec1 v1, InVec2 v2);
template<class ExecutionPolicy, @\exposconcept{in-vector}@ InVec1, @\exposconcept{in-vector}@ InVec2>
Expand Down

0 comments on commit 47b2f70

Please sign in to comment.