v0.14.0
Public Member Functions | Private Member Functions | Private Attributes | List of all members
FTensor::Ddg_times_Tensor2_01< 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_01< A, B, T, U, Dim01, Dim23, i, j, k, l >:
[legend]

Public Member Functions

 Ddg_times_Tensor2_01 (const Ddg_Expr< A, T, Dim01, Dim23, i, j, k, l > &a, const Tensor2_Expr< B, U, Dim01, Dim01, i, 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

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

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_01< A, B, T, U, Dim01, Dim23, i, j, k, l >

Definition at line 161 of file Ddg_times_Tensor2.hpp.

Constructor & Destructor Documentation

◆ Ddg_times_Tensor2_01()

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_01< A, B, T, U, Dim01, Dim23, i, j, k, l >::Ddg_times_Tensor2_01 ( const Ddg_Expr< A, T, Dim01, Dim23, i, j, k, l > &  a,
const Tensor2_Expr< B, U, Dim01, Dim01, i, j > &  b 
)
inline

Definition at line 186 of file Ddg_times_Tensor2.hpp.

188  : iterA(a), iterB(b) {}

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_01< 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 180 of file Ddg_times_Tensor2.hpp.

181  {
182  return iterA(0, 0, N1, N2) * iterB(0, 0);
183  }

◆ 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_01< 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 174 of file Ddg_times_Tensor2.hpp.

176  {
177  return iterA(0, Current_Dim1 - 1, N1, N2) * iterB(0, Current_Dim1 - 1) +
178  eval(N1, N2, Number<Dim01>(), Number<Current_Dim1 - 1>());
179  }

◆ 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_01< 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 166 of file Ddg_times_Tensor2.hpp.

168  {
169  return iterA(Current_Dim0 - 1, Current_Dim1 - 1, N1, N2) *
170  iterB(Current_Dim0 - 1, Current_Dim1 - 1) +
171  eval(N1, N2, Number<Current_Dim0 - 1>(), Number<Current_Dim1>());
172  }

◆ 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_01< A, B, T, U, Dim01, Dim23, i, j, k, l >::operator() ( const int  N1,
const int  N2 
) const
inline

Definition at line 189 of file Ddg_times_Tensor2.hpp.

189  {
190  return eval(N1, N2, Number<Dim01>(), Number<Dim01>());
191  }

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_01< A, B, T, U, Dim01, Dim23, i, j, k, l >::iterA
private

Definition at line 162 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, Dim01, Dim01, i, j> FTensor::Ddg_times_Tensor2_01< A, B, T, U, Dim01, Dim23, i, j, k, l >::iterB
private

Definition at line 163 of file Ddg_times_Tensor2.hpp.


The documentation for this class was generated from the following file:
FTensor::Ddg_times_Tensor2_01::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:166
FTensor::Ddg_times_Tensor2_01::iterB
Tensor2_Expr< B, U, Dim01, Dim01, i, j > iterB
Definition: Ddg_times_Tensor2.hpp:163
a
constexpr double a
Definition: approx_sphere.cpp:30
FTensor::Ddg_times_Tensor2_01::iterA
Ddg_Expr< A, T, Dim01, Dim23, i, j, k, l > iterA
Definition: Ddg_times_Tensor2.hpp:162