v0.14.0
Loading...
Searching...
No Matches
test_T4.cpp
Go to the documentation of this file.
3#include <iostream>
4using namespace FTensor;
5using namespace std;
6
9 const Tensor2<double, 4, 3> &t2_4,
10 const Tensor2<double, 3, 4> &t2_5);
11
14 const Tensor2<double, 4, 3> &t2_4,
15 const Tensor2<double, 3, 4> &t2_5);
17 const Tensor3<double, 2, 3, 4> &t3_2);
18
20 const Tensor3<double, 2, 3, 4> &t3_2);
21
22void test_T4_008();
23
24void test_T4_iostream();
25
27 const Tensor2<double, 4, 3> &t2_4,
28 const Tensor2<double, 3, 4> &t2_5,
29 const Tensor3<double, 2, 3, 4> &t3_2)
30{
31 test_T4_01(t4_1);
32 test_T4_02(t4_1, t2_4, t2_5);
33 test_T4_04(t4_1);
34 test_T4_05(t4_1, t2_4, t2_5);
35 test_T4_06(t4_1, t3_2);
36 test_T4_007(t4_1, t3_2);
39}
Tensors class implemented by Walter Landry.
Tensors class implemented by Walter Landry.
Definition FTensor.hpp:51
void test_T4(const Tensor4< double, 1, 2, 3, 4 > &t4_1, const Tensor2< double, 4, 3 > &t2_4, const Tensor2< double, 3, 4 > &t2_5, const Tensor3< double, 2, 3, 4 > &t3_2)
Definition test_T4.cpp:26
void test_T4_008()
void test_T4_007(const Tensor4< double, 1, 2, 3, 4 > &t4, const Tensor3< double, 2, 3, 4 > &t3_2)
void test_T4_04(const Tensor4< double, 1, 2, 3, 4 > &t4_1)
Definition test_T4_04.cpp:7
void test_T4_02(const Tensor4< double, 1, 2, 3, 4 > &t4_1, const Tensor2< double, 4, 3 > &t2_4, const Tensor2< double, 3, 4 > &t2_5)
Definition test_T4_02.cpp:8
void test_T4_05(const Tensor4< double, 1, 2, 3, 4 > &t4, const Tensor2< double, 4, 3 > &t2_4, const Tensor2< double, 3, 4 > &t2_5)
Definition test_T4_05.cpp:7
void test_T4_01(const Tensor4< double, 1, 2, 3, 4 > &t4_1)
Definition test_T4_01.cpp:8
void test_T4_06(const Tensor4< double, 1, 2, 3, 4 > &t4, const Tensor3< double, 2, 3, 4 > &t3_2)
Definition test_T4_06.cpp:7
void test_T4_iostream()