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

Static Public Member Functions

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

Detailed Description

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

Definition at line 209 of file TinyMatrixOps.h.

Member Function Documentation

◆ apply()

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

Definition at line 211 of file TinyMatrixOps.h.

212  {
213  op(lhs[0], rhs);
214  op(lhs[1], rhs);
215  op(lhs[2], rhs);
216  op(lhs[3], rhs);
217  op(lhs[4], rhs);
218  op(lhs[5], rhs);
219  op(lhs[6], rhs);
220  op(lhs[7], rhs);
221  op(lhs[8], rhs);
222  }

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