mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Clang-format tests, examples, libraries, benchmarks, etc.
This commit is contained in:
committed by
Rasmus Munk Larsen
parent
3252ecc7a4
commit
46e9cdb7fe
@@ -1,12 +1,7 @@
|
||||
#include "gemv_common.h"
|
||||
|
||||
EIGEN_DONT_INLINE
|
||||
void trmv(const Mat &A, Vec &B, const Vec &C)
|
||||
{
|
||||
EIGEN_DONT_INLINE void trmv(const Mat &A, Vec &B, const Vec &C) {
|
||||
B.noalias() += A.transpose().triangularView<Upper>() * C;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
return main_gemv(argc, argv, trmv);
|
||||
}
|
||||
int main(int argc, char **argv) { return main_gemv(argc, argv, trmv); }
|
||||
|
||||
Reference in New Issue
Block a user