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

Static Public Member Functions

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

Detailed Description

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

Definition at line 230 of file TinyMatrixOps.h.

Member Function Documentation

◆ apply()

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

Definition at line 232 of file TinyMatrixOps.h.

233  {
234  op(lhs[0], rhs[0]);
235  op(lhs[1], rhs[1]);
236  op(lhs[2], rhs[2]);
237  op(lhs[3], rhs[3]);
238  op(lhs[4], rhs[4]);
239  op(lhs[5], rhs[5]);
240  op(lhs[6], rhs[6]);
241  op(lhs[7], rhs[7]);
242  op(lhs[8], rhs[8]);
243  op(lhs[9], rhs[9]);
244  op(lhs[10], rhs[10]);
245  op(lhs[11], rhs[11]);
246  op(lhs[12], rhs[12]);
247  op(lhs[13], rhs[13]);
248  op(lhs[14], rhs[14]);
249  op(lhs[15], rhs[15]);
250  }

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