-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCHOLMODSolver.hpp
100 lines (78 loc) · 2.95 KB
/
CHOLMODSolver.hpp
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#pragma once
////////////////////////////////////////////////////////////////////////////////
#include <Eigen/Dense>
#include <Eigen/Sparse>
#include "cholmod.h"
#include <memory>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
// #define POLYSOLVE_DELETE_MOVE_COPY(Base) \
// Base(Base &&) = delete; \
// Base &operator=(Base &&) = delete; \
// Base(const Base &) = delete; \
// Base &operator=(const Base &) = delete;
////////////////////////////////////////////////////////////////////////////////
// TODO:
// - [ ] Support both RowMajor + ColumnMajor sparse matrices
// - [ ] Wrapper around MUMPS
// - [ ] Wrapper around other iterative solvers (AMGCL, ViennaCL, etc.)
// - [ ] Document the json parameters for each
////////////////////////////////////////////////////////////////////////////////
namespace polysolve
{
typedef Eigen::SparseMatrix<double, Eigen::ColMajor, long int> StiffnessMatrixL;
/**
@brief Base class for cholmod solver.
*/
class CHOLMODSolver
{
// public:
// Shortcut alias
// typedef Eigen::VectorXd VectorXd;
// template <typename T>
// using Ref = Eigen::Ref<T>;
// public:
//////////////////
// Constructors //
//////////////////
// Virtual destructor
// Static constructor
//
// @param[in] solver Solver type
// @param[in] precond Preconditioner for iterative solvers
//
// static std::unique_ptr<LinearSolver> create(const std::string &solver, const std::string &precond);
// List available solvers
// static std::vector<std::string> availableSolvers();
// static std::string defaultSolver();
// List available preconditioners
// static std::vector<std::string> availablePrecond();
// static std::string defaultPrecond();
protected:
cholmod_common *cm;
cholmod_sparse A;
cholmod_dense *x, b;
cholmod_factor *L;
public:
CHOLMODSolver();
~CHOLMODSolver();
// Set solver parameters
// virtual void setParameters(const json ¶ms) {}
// Get info on the last solve step
void getInfo(json ¶ms) const;
// Analyze sparsity pattern
void analyzePattern(StiffnessMatrixL &Ain);
// Factorize system matrix
void factorize(StiffnessMatrixL &Ain);
//
// @brief { Solve the linear system Ax = b }
//
// @param[in] b { Right-hand side. }
// @param[in,out] x { Unknown to compute. When using an iterative
// solver, the input unknown vector is used as an
// initial guess, and must thus be properly allocated
// and initialized. }
//
void solve(Eigen::VectorXd &rhs, Eigen::VectorXd &result);
};
} // namespace polysolve