v0.14.0
Public Member Functions | Private Attributes | List of all members
FTensor::Tensor4_numeral_3< A, T > Class Template Reference

#include <src/ftensor/src/FTensor/Tensor4/Tensor4_numeral.hpp>

Collaboration diagram for FTensor::Tensor4_numeral_3< A, T >:
[legend]

Public Member Functions

operator() (const int N0, const int N1, const int N2) const
 
 Tensor4_numeral_3 (const A &a, const int NN)
 

Private Attributes

A iterA
 
int N
 

Detailed Description

template<class A, class T>
class FTensor::Tensor4_numeral_3< A, T >

Definition at line 26 of file Tensor4_numeral.hpp.

Constructor & Destructor Documentation

◆ Tensor4_numeral_3()

template<class A , class T >
FTensor::Tensor4_numeral_3< A, T >::Tensor4_numeral_3 ( const A a,
const int  NN 
)
inline

Definition at line 35 of file Tensor4_numeral.hpp.

35 : iterA(a), N(NN) {}

Member Function Documentation

◆ operator()()

template<class A , class T >
T FTensor::Tensor4_numeral_3< A, T >::operator() ( const int  N0,
const int  N1,
const int  N2 
) const
inline

Definition at line 32 of file Tensor4_numeral.hpp.

32  {
33  return iterA(N0, N1, N2, N);
34  }

Member Data Documentation

◆ iterA

template<class A , class T >
A FTensor::Tensor4_numeral_3< A, T >::iterA
private

Definition at line 28 of file Tensor4_numeral.hpp.

◆ N

template<class A , class T >
int FTensor::Tensor4_numeral_3< A, T >::N
private

Definition at line 29 of file Tensor4_numeral.hpp.


The documentation for this class was generated from the following file:
a
constexpr double a
Definition: approx_sphere.cpp:30
FTensor::Tensor4_numeral_3::N
int N
Definition: Tensor4_numeral.hpp:29
FTensor::Tensor4_numeral_3::iterA
A iterA
Definition: Tensor4_numeral.hpp:28