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

#include <src/ftensor/src/FTensor/Tensor3/Tensor3_times_Dg.hpp>

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

Public Member Functions

 Tensor3_times_Dg_02_20 (const Tensor3_Expr< A, T, Dim2, Dim1, Dim01, j, i, k > &a, const Dg_Expr< B, U, Dim01, Dim2, k, l, j > &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

Tensor3_Expr< A, T, Dim2, Dim1, Dim01, j, i, kiterA
 
Dg_Expr< B, U, Dim01, Dim2, k, l, jiterB
 

Detailed Description

template<class A, class B, class T, class U, int Dim2, int Dim1, int Dim01, char i, char j, char k, char l>
class FTensor::Tensor3_times_Dg_02_20< A, B, T, U, Dim2, Dim1, Dim01, i, j, k, l >

Definition at line 402 of file Tensor3_times_Dg.hpp.

Constructor & Destructor Documentation

◆ Tensor3_times_Dg_02_20()

template<class A , class B , class T , class U , int Dim2, int Dim1, int Dim01, char i, char j, char k, char l>
FTensor::Tensor3_times_Dg_02_20< A, B, T, U, Dim2, Dim1, Dim01, i, j, k, l >::Tensor3_times_Dg_02_20 ( const Tensor3_Expr< A, T, Dim2, Dim1, Dim01, j, i, k > &  a,
const Dg_Expr< B, U, Dim01, Dim2, k, l, j > &  b 
)
inline

Definition at line 432 of file Tensor3_times_Dg.hpp.

435  : iterA(a), iterB(b)
436  {}

Member Function Documentation

◆ eval() [1/3]

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

Definition at line 425 of file Tensor3_times_Dg.hpp.

427  {
428  return iterA(0, N1, 0) * iterB(0, N2, 0);
429  }

◆ eval() [2/3]

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

Definition at line 419 of file Tensor3_times_Dg.hpp.

421  {
422  return iterA(0, N1, Current_Dim1 - 1) * iterB(Current_Dim1 - 1, N2, 0)
423  + eval(N1, N2, Number<Dim2>(), Number<Current_Dim1 - 1>());
424  }

◆ eval() [3/3]

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

Definition at line 409 of file Tensor3_times_Dg.hpp.

411  {
412  return iterA(Current_Dim0 - 1, N1, Current_Dim1 - 1)
413  * iterB(Current_Dim1 - 1, N2, Current_Dim0 - 1)
414  + eval(N1, N2, Number<Current_Dim0 - 1>(),
415  Number<Current_Dim1>());
416  }

◆ operator()()

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

Definition at line 437 of file Tensor3_times_Dg.hpp.

438  {
439  return eval(N1, N2, Number<Dim2>(), Number<Dim01>());
440  }

Member Data Documentation

◆ iterA

template<class A , class B , class T , class U , int Dim2, int Dim1, int Dim01, char i, char j, char k, char l>
Tensor3_Expr<A, T, Dim2, Dim1, Dim01, j, i, k> FTensor::Tensor3_times_Dg_02_20< A, B, T, U, Dim2, Dim1, Dim01, i, j, k, l >::iterA
private

Definition at line 404 of file Tensor3_times_Dg.hpp.

◆ iterB

template<class A , class B , class T , class U , int Dim2, int Dim1, int Dim01, char i, char j, char k, char l>
Dg_Expr<B, U, Dim01, Dim2, k, l, j> FTensor::Tensor3_times_Dg_02_20< A, B, T, U, Dim2, Dim1, Dim01, i, j, k, l >::iterB
private

Definition at line 405 of file Tensor3_times_Dg.hpp.


The documentation for this class was generated from the following file:
FTensor::Tensor3_times_Dg_02_20::iterA
Tensor3_Expr< A, T, Dim2, Dim1, Dim01, j, i, k > iterA
Definition: Tensor3_times_Dg.hpp:404
a
constexpr double a
Definition: approx_sphere.cpp:30
FTensor::Tensor3_times_Dg_02_20::eval
promote< T, U >::V eval(const int N1, const int N2, const Number< Current_Dim0 > &, const Number< Current_Dim1 > &) const
Definition: Tensor3_times_Dg.hpp:409
FTensor::Tensor3_times_Dg_02_20::iterB
Dg_Expr< B, U, Dim01, Dim2, k, l, j > iterB
Definition: Tensor3_times_Dg.hpp:405