-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFdaPDE.h
More file actions
59 lines (48 loc) · 1.45 KB
/
FdaPDE.h
File metadata and controls
59 lines (48 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//
// Created by simonepanzeri on 24/11/2021.
//
#ifndef DEV_FDAPDE_FDAPDE_H
#define DEV_FDAPDE_FDAPDE_H
#include <iostream>
//#include <cstdlib>
#include <cmath>
#include <numeric>
#include <limits>
#include <string>
#include <type_traits>
#include <iomanip>
#include <utility>
#include <memory>
#include <stack>
#include <vector>
#include <array>
#include <map>
#include <set>
#include <unordered_set>
#include <tuple>
#include "eigen_library/Eigen/Sparse"
//#include "eigen_library/Eigen/SparseLU"
#include "eigen_library/Eigen/Dense"
#include "eigen_library/Eigen/StdVector"
#include "eigen_library/Eigen/IterativeLinearSolvers"
#include "Make_Unique.h"
typedef double Real;
typedef int UInt;
typedef Eigen::Matrix<Real,Eigen::Dynamic,Eigen::Dynamic> MatrixXr;
typedef Eigen::Matrix<UInt,Eigen::Dynamic,Eigen::Dynamic> MatrixXi;
typedef Eigen::Matrix<Real,Eigen::Dynamic,1> VectorXr;
typedef Eigen::Matrix<UInt,Eigen::Dynamic,1> VectorXi;
typedef Eigen::Matrix<VectorXr,Eigen::Dynamic,Eigen::Dynamic> MatrixXv;
typedef Eigen::SparseMatrix<Real> SpMat;
typedef Eigen::SparseVector<Real> SpVec;
typedef Eigen::Triplet<Real> coeff;
template <bool ... b>
struct multi_bool_type
{};
typedef multi_bool_type<true> t_type;
typedef multi_bool_type<false> f_type;
typedef multi_bool_type<true, true> tt_type;
typedef multi_bool_type<false, true> ft_type;
typedef multi_bool_type<true, false> tf_type;
typedef multi_bool_type<false, false> ff_type;
#endif //DEV_FDAPDE_FDAPDE_H