Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
matrix.h
1/*
2 * OGF/Graphite: Geometry and Graphics Programming Library + Utilities
3 * Copyright (C) 2000 Bruno Levy
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 * If you modify this software, you should include a notice giving the
20 * name of the person performing the modification, the date of modification,
21 * and the reason for such modification.
22 *
23 * Contact: Bruno Levy
24 *
25 * levy@loria.fr
26 *
27 * ISA Project
28 * LORIA, INRIA Lorraine,
29 * Campus Scientifique, BP 239
30 * 54506 VANDOEUVRE LES NANCY CEDEX
31 * FRANCE
32 *
33 * Note that the GNU General Public License does not permit incorporating
34 * the Software into proprietary programs.
35 */
36
37#ifndef H_OGF_SCENE_GRAPH_NL_MATRIX_H
38#define H_OGF_SCENE_GRAPH_NL_MATRIX_H
39
42
43struct NLMatrixStruct;
45
46namespace OGF {
47 namespace NL {
48
49 class Vector;
50
51 gom_class SCENE_GRAPH_API Matrix : public Object {
52 public:
53
57 enum Format { Dynamic, CRS, Factorized };
58
62 enum Factorization { SuperLU, SuperLU_perm, SuperLU_sym, Cholmod };
63
67 enum IterativeSolver { CG, GMRES, BiCGSTAB };
68
72 enum Preconditioner { None, Jacobi, SSOR};
73
80
84 ~Matrix() override;
85
86 gom_properties:
91 index_t get_m() const;
92
97 index_t get_n() const;
98
106
107 gom_slots:
108
117 void add_coefficient(index_t i, index_t j, double a);
118
119
131 const Vector* I, const Vector* J, const Vector* A,
132 bool ignore_OOB = false
133 );
134
141
148 void mult(const Vector* x, Vector* y) const;
149
156 void compress();
157
168 Matrix* factorize(Factorization factorization) const;
169
182 const Vector* b, Vector* x,
183 IterativeSolver solver = BiCGSTAB,
184 Preconditioner precond = None,
185 index_t max_iter=1000, double eps = 1e-3
186 );
187
196 const Vector* b, Vector* x,
197 Factorization factorization = SuperLU_perm
198 );
199
209 const Vector* b, Vector* x,
210 bool direct_solver = false
211 );
212
213 public:
219 return impl_;
220 }
221
222 protected:
223
229 Matrix(NLMatrix impl) : impl_(impl) {
230 }
231
232 private:
233 NLMatrix impl_;
234 };
235
236 }
237}
238
239#endif
Factorization
Factorization methods.
Definition matrix.h:62
Format get_format() const
Gets the format of the matrix.
void solve_direct(const Vector *b, Vector *x, Factorization factorization=SuperLU_perm)
Solves a linear system using a direct solver.
void add_coefficients_to_diagonal(const Vector *A)
Adds a vector of coefficient.
void add_coefficients(const Vector *I, const Vector *J, const Vector *A, bool ignore_OOB=false)
Adds a vector of coefficient.
Matrix(index_t m, index_t n)
Matrix constructor.
Format
Internal format of a matrix.
Definition matrix.h:57
IterativeSolver
Iterative Solvers.
Definition matrix.h:67
void compress()
Compresses the matrix from the dynamic format to the CRS format.
Matrix * factorize(Factorization factorization) const
Factorizes the matrix.
NLMatrix implementation() const
Gets the underlying OpenNL implementation.
Definition matrix.h:218
index_t get_n() const
Gets the number of columns.
Matrix(NLMatrix impl)
Matrix constructor.
Definition matrix.h:229
~Matrix() override
Matrix destructor.
void mult(const Vector *x, Vector *y) const
Computes a matrix vector product.
Preconditioner
Preconditioners.
Definition matrix.h:72
void solve_iterative(const Vector *b, Vector *x, IterativeSolver solver=BiCGSTAB, Preconditioner precond=None, index_t max_iter=1000, double eps=1e-3)
Solves a linear system using an iterative solver.
void solve_symmetric(const Vector *b, Vector *x, bool direct_solver=false)
Solves a linear system with a symmetric matrix using default paramerers.
A scriptable Vector objects.
Definition vector.h:54
Base class for all objects in the GOM system.
Definition object.h:65
geo_index_t index_t
The type for storing and manipulating indices.
Definition numeric.h:329
Global Graphite namespace.
Definition common.h:76
The base class for all objects in the GOM system.
Definitions common to all include files in the scene_graph library.
The base class for abstract matrices.
Definition nl_matrix.h:80