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

Static Public Member Functions

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

Detailed Description

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

Definition at line 192 of file TinyMatrixOps.h.

Member Function Documentation

◆ apply()

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

Definition at line 194 of file TinyMatrixOps.h.

195  {
196  op(lhs[0], rhs[0]);
197  op(lhs[1], rhs[1]);
198  op(lhs[2], rhs[2]);
199  op(lhs[3], rhs[3]);
200  op(lhs[4], rhs[4]);
201  op(lhs[5], rhs[5]);
202  op(lhs[6], rhs[6]);
203  op(lhs[7], rhs[7]);
204  op(lhs[8], rhs[8]);
205  }

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