v0.14.0
Loading...
Searching...
No Matches
test_T3.cpp
Go to the documentation of this file.
3#include <iostream>
4using namespace FTensor;
5using namespace std;
6
7void test_T3_01(const Tensor1<double, 3> &t1_1, const Tensor1<double, 3> &t1_2,
8 const Tensor2<double, 3, 3> &t2_2,
9 const Tensor2<double, 3, 3> &t2_3,
12 const Dg<double, 3, 3> &t3dg_2);
13
14void test_T3_02(const Tensor1<double, 3> &t1_1, const Tensor1<double, 3> &t1_2,
15 const Tensor2<double, 3, 3> &t2_2,
16 const Tensor2<double, 3, 3> &t2_3);
17
18void test_T3_03(const Tensor3<double, 3, 3, 3> &t3_1);
19
21
22void test_T3_iostream();
23
24void test_T3(const Tensor1<double, 3> &t1_1, const Tensor1<double, 3> &t1_2,
25 const Tensor2<double, 3, 3> &t2_2,
26 const Tensor2<double, 3, 3> &t2_3,
29 const Tensor3<double, 3, 3, 3> &t3_1,
30 const Dg<double, 3, 3> &t3dg_2)
31{
32 test_T3_01(t1_1, t1_2, t2_2, t2_3, t2s_2, t2s_3, t3dg_2);
33 test_T3_02(t1_1, t1_2, t2_2, t2_3);
34 test_T3_03(t3_1);
35 test_T3_004(t3_1);
37}
Tensors class implemented by Walter Landry.
Tensors class implemented by Walter Landry.
Definition FTensor.hpp:51
void test_T3(const Tensor1< double, 3 > &t1_1, const Tensor1< double, 3 > &t1_2, const Tensor2< double, 3, 3 > &t2_2, const Tensor2< double, 3, 3 > &t2_3, const Tensor2_symmetric< double, 3 > &t2s_2, const Tensor2_symmetric< double, 3 > &t2s_3, const Tensor3< double, 3, 3, 3 > &t3_1, const Dg< double, 3, 3 > &t3dg_2)
Definition test_T3.cpp:24
void test_T3_02(const Tensor1< double, 3 > &t1_1, const Tensor1< double, 3 > &t1_2, const Tensor2< double, 3, 3 > &t2_2, const Tensor2< double, 3, 3 > &t2_3)
Definition test_T3_02.cpp:7
void test_T3_03(const Tensor3< double, 3, 3, 3 > &t3_1)
Definition test_T3_03.cpp:7
void test_T3_01(const Tensor1< double, 3 > &t1_1, const Tensor1< double, 3 > &t1_2, const Tensor2< double, 3, 3 > &t2_2, const Tensor2< double, 3, 3 > &t2_3, const Tensor2_symmetric< double, 3 > &t2s_2, const Tensor2_symmetric< double, 3 > &t2s_3, const Dg< double, 3, 3 > &t3dg_2)
Definition test_T3_01.cpp:7
void test_T3_004(const Tensor3< double, 3, 3, 3 > &t3_1)
void test_T3_iostream()