v0.14.0
Public Member Functions | Private Member Functions | Private Attributes | List of all members
FTensor::Ddg_times_Tensor2_23< A, B, T, U, Dim01, Dim23, i, j, k, l > Class Template Reference

#include <src/ftensor/src/FTensor/Ddg/Ddg_times_Tensor2.hpp>

Collaboration diagram for FTensor::Ddg_times_Tensor2_23< A, B, T, U, Dim01, Dim23, i, j, k, l >:
[legend]

Public Member Functions

 Ddg_times_Tensor2_23 (const Ddg_Expr< A, T, Dim01, Dim23, i, j, k, l > &a, const Tensor2_Expr< B, U, Dim23, Dim23, k, l > &b)
 
promote< T, U >::V operator() (const int N1, const int N2) const
 

Private Member Functions

template<int Current_Dim0, int Current_Dim1>
promote< T, U >::V eval (const int N1, const int N2, const Number< Current_Dim0 > &, const Number< Current_Dim1 > &) const
 
template<int Current_Dim1>
promote< T, U >::V eval (const int N1, const int N2, const Number< 1 > &, const Number< Current_Dim1 > &) const
 
promote< T, U >::V eval (const int N1, const int N2, const Number< 1 > &, const Number< 1 > &) const
 

Private Attributes

Ddg_Expr< A, T, Dim01, Dim23, i, j, k, literA
 
Tensor2_Expr< B, U, Dim23, Dim23, k, literB
 

Detailed Description

template<class A, class B, class T, class U, int Dim01, int Dim23, char i, char j, char k, char l>
class FTensor::Ddg_times_Tensor2_23< A, B, T, U, Dim01, Dim23, i, j, k, l >

Definition at line 13 of file Ddg_times_Tensor2.hpp.

Constructor & Destructor Documentation

◆ Ddg_times_Tensor2_23()

template<class A , class B , class T , class U , int Dim01, int Dim23, char i, char j, char k, char l>
FTensor::Ddg_times_Tensor2_23< A, B, T, U, Dim01, Dim23, i, j, k, l >::Ddg_times_Tensor2_23 ( const Ddg_Expr< A, T, Dim01, Dim23, i, j, k, l > &  a,
const Tensor2_Expr< B, U, Dim23, Dim23, k, l > &  b 
)
inline

Definition at line 43 of file Ddg_times_Tensor2.hpp.

45  : iterA(a), iterB(b)
46  {}

Member Function Documentation

◆ eval() [1/3]

template<class A , class B , class T , class U , int Dim01, int Dim23, char i, char j, char k, char l>
promote<T, U>::V FTensor::Ddg_times_Tensor2_23< A, B, T, U, Dim01, Dim23, i, j, k, l >::eval ( const int  N1,
const int  N2,
const Number< 1 > &  ,
const Number< 1 > &   
) const
inlineprivate

Definition at line 36 of file Ddg_times_Tensor2.hpp.

38  {
39  return iterA(N1, N2, 0, 0) * iterB(0, 0);
40  }

◆ eval() [2/3]

template<class A , class B , class T , class U , int Dim01, int Dim23, char i, char j, char k, char l>
template<int Current_Dim1>
promote<T, U>::V FTensor::Ddg_times_Tensor2_23< A, B, T, U, Dim01, Dim23, i, j, k, l >::eval ( const int  N1,
const int  N2,
const Number< 1 > &  ,
const Number< Current_Dim1 > &   
) const
inlineprivate

Definition at line 30 of file Ddg_times_Tensor2.hpp.

32  {
33  return iterA(N1, N2, 0, Current_Dim1 - 1) * iterB(0, Current_Dim1 - 1)
34  + eval(N1, N2, Number<Dim23>(), Number<Current_Dim1 - 1>());
35  }

◆ eval() [3/3]

template<class A , class B , class T , class U , int Dim01, int Dim23, char i, char j, char k, char l>
template<int Current_Dim0, int Current_Dim1>
promote<T, U>::V FTensor::Ddg_times_Tensor2_23< A, B, T, U, Dim01, Dim23, i, j, k, l >::eval ( const int  N1,
const int  N2,
const Number< Current_Dim0 > &  ,
const Number< Current_Dim1 > &   
) const
inlineprivate

Definition at line 20 of file Ddg_times_Tensor2.hpp.

22  {
23  return iterA(N1, N2, Current_Dim0 - 1, Current_Dim1 - 1)
24  * iterB(Current_Dim0 - 1, Current_Dim1 - 1)
25  + eval(N1, N2, Number<Current_Dim0 - 1>(),
26  Number<Current_Dim1>());
27  }

◆ operator()()

template<class A , class B , class T , class U , int Dim01, int Dim23, char i, char j, char k, char l>
promote<T, U>::V FTensor::Ddg_times_Tensor2_23< A, B, T, U, Dim01, Dim23, i, j, k, l >::operator() ( const int  N1,
const int  N2 
) const
inline

Definition at line 47 of file Ddg_times_Tensor2.hpp.

48  {
49  return eval(N1, N2, Number<Dim23>(), Number<Dim23>());
50  }

Member Data Documentation

◆ iterA

template<class A , class B , class T , class U , int Dim01, int Dim23, char i, char j, char k, char l>
Ddg_Expr<A, T, Dim01, Dim23, i, j, k, l> FTensor::Ddg_times_Tensor2_23< A, B, T, U, Dim01, Dim23, i, j, k, l >::iterA
private

Definition at line 15 of file Ddg_times_Tensor2.hpp.

◆ iterB

template<class A , class B , class T , class U , int Dim01, int Dim23, char i, char j, char k, char l>
Tensor2_Expr<B, U, Dim23, Dim23, k, l> FTensor::Ddg_times_Tensor2_23< A, B, T, U, Dim01, Dim23, i, j, k, l >::iterB
private

Definition at line 16 of file Ddg_times_Tensor2.hpp.


The documentation for this class was generated from the following file:
FTensor::Ddg_times_Tensor2_23::eval
promote< T, U >::V eval(const int N1, const int N2, const Number< Current_Dim0 > &, const Number< Current_Dim1 > &) const
Definition: Ddg_times_Tensor2.hpp:20
a
constexpr double a
Definition: approx_sphere.cpp:30
FTensor::Ddg_times_Tensor2_23::iterA
Ddg_Expr< A, T, Dim01, Dim23, i, j, k, l > iterA
Definition: Ddg_times_Tensor2.hpp:15
FTensor::Ddg_times_Tensor2_23::iterB
Tensor2_Expr< B, U, Dim23, Dim23, k, l > iterB
Definition: Ddg_times_Tensor2.hpp:16