HOLDER_PAC
 All Classes Functions Modules
recLU_FactorTree.hpp
1 #ifndef RECLU_FACTORTREE_HPP
2 #define RECLU_FACTORTREE_HPP
3 
4 #include "Eigen/Dense"
5 
6 
7 
9 
10 public:
11  struct node {
12  node* left;
13  node* right;
14  bool isLeaf;
15  Eigen::PartialPivLU<Eigen::MatrixXd> LU;
16  Eigen::MatrixXd topDiagSoln_LR;
17  Eigen::MatrixXd bottDiagSoln_LR;
18  };
19 
22 
23  node* rootNode;
24 
25 private:
26  void freeTree(node* root);
27 
28 };
29 
30 
31 #endif
Definition: recLU_FactorTree.hpp:8
Definition: recLU_FactorTree.hpp:11