v0.14.0
Loading...
Searching...
No Matches
one_over_1_minus_x2.cpp File Reference
#include "one_over_1_minus_x.hpp"
#include <iostream>

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 4 of file one_over_1_minus_x2.cpp.

5{
6 Tensor1<double, 3> y(0., 1., 2.);
7 Tensor1<double, 3> a1(2., 3., 4.);
8 Tensor1<double, 3> a2(5., 6., 7.);
9
10 for(int ii = 0; ii < 1000000000; ii++)
11 {
12 func2(y, a1, a2);
13 }
14 std::cout << y(0) << " " << y(1) << " " << y(2) << std::endl;
15}
constexpr double a2
constexpr double a1
void func2(Tensor1< double, 3 > &y, Tensor1< double, 3 > &a1, Tensor1< double, 3 > &a2)