QMCPACK
OTAssign< TinyMatrix< T1, 4, 4 >, T2, OP > Struct Template Reference
+ Collaboration diagram for OTAssign< TinyMatrix< T1, 4, 4 >, T2, OP >:

Static Public Member Functions

static void apply (TinyMatrix< T1, 4, 4 > &lhs, const T2 &rhs, OP op)
 

Detailed Description

template<class T1, class T2, class OP>
struct qmcplusplus::OTAssign< TinyMatrix< T1, 4, 4 >, T2, OP >

Definition at line 254 of file TinyMatrixOps.h.

Member Function Documentation

◆ apply()

static void apply ( TinyMatrix< T1, 4, 4 > &  lhs,
const T2 &  rhs,
OP  op 
)
inlinestatic

Definition at line 256 of file TinyMatrixOps.h.

257  {
258  op(lhs[0], rhs);
259  op(lhs[1], rhs);
260  op(lhs[2], rhs);
261  op(lhs[3], rhs);
262  op(lhs[4], rhs);
263  op(lhs[5], rhs);
264  op(lhs[6], rhs);
265  op(lhs[7], rhs);
266  op(lhs[8], rhs);
267  op(lhs[9], rhs);
268  op(lhs[10], rhs);
269  op(lhs[11], rhs);
270  op(lhs[12], rhs);
271  op(lhs[13], rhs);
272  op(lhs[14], rhs);
273  op(lhs[15], rhs);
274  }

The documentation for this struct was generated from the following file: