v0.13.2
Loading...
Searching...
No Matches
Public Member Functions | Private Member Functions | Private Attributes | List of all members
FTensor::Dg_times_Dg_01_01< A, B, T, U, Dim01, Dim2, Dim3, i, j, k, l > Class Template Reference

#include <src/ftensor/src/FTensor/Dg/Dg_times_Dg.hpp>

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

Public Member Functions

 Dg_times_Dg_01_01 (const Dg_Expr< A, T, Dim01, Dim2, i, j, k > &a, const Dg_Expr< B, U, Dim01, Dim3, i, j, 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

Dg_Expr< A, T, Dim01, Dim2, i, j, kiterA
 
Dg_Expr< B, U, Dim01, Dim3, i, j, literB
 

Detailed Description

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

Definition at line 152 of file Dg_times_Dg.hpp.

Constructor & Destructor Documentation

◆ Dg_times_Dg_01_01()

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

Definition at line 177 of file Dg_times_Dg.hpp.

179 : iterA(a), iterB(b) {}
constexpr double a
Dg_Expr< B, U, Dim01, Dim3, i, j, l > iterB
Dg_Expr< A, T, Dim01, Dim2, i, j, k > iterA

Member Function Documentation

◆ eval() [1/3]

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

Definition at line 171 of file Dg_times_Dg.hpp.

172 {
173 return iterA(0, 0, N1) * iterB(0, 0, N2);
174 }
static Number< 2 > N2
static Number< 1 > N1

◆ eval() [2/3]

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

Definition at line 165 of file Dg_times_Dg.hpp.

167 {
168 return iterA(0, Current_Dim1 - 1, N1) * iterB(0, Current_Dim1 - 1, N2) +
169 eval(N1, N2, Number<Dim01>(), Number<Current_Dim1 - 1>());
170 }
promote< T, U >::V eval(const int N1, const int N2, const Number< Current_Dim0 > &, const Number< Current_Dim1 > &) const

◆ eval() [3/3]

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

Definition at line 157 of file Dg_times_Dg.hpp.

159 {
160 return iterA(Current_Dim0 - 1, Current_Dim1 - 1, N1) *
161 iterB(Current_Dim0 - 1, Current_Dim1 - 1, N2) +
162 eval(N1, N2, Number<Current_Dim0 - 1>(), Number<Current_Dim1>());
163 }

◆ operator()()

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

Definition at line 180 of file Dg_times_Dg.hpp.

180 {
181 return eval(N1, N2, Number<Dim01>(), Number<Dim01>());
182 }

Member Data Documentation

◆ iterA

template<class A , class B , class T , class U , int Dim01, int Dim2, int Dim3, char i, char j, char k, char l>
Dg_Expr<A, T, Dim01, Dim2, i, j, k> FTensor::Dg_times_Dg_01_01< A, B, T, U, Dim01, Dim2, Dim3, i, j, k, l >::iterA
private

Definition at line 153 of file Dg_times_Dg.hpp.

◆ iterB

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

Definition at line 154 of file Dg_times_Dg.hpp.


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