37#ifndef H_OGF_SCENE_GRAPH_NL_MATRIX_H
38#define H_OGF_SCENE_GRAPH_NL_MATRIX_H
57 enum Format { Dynamic, CRS, Factorized };
132 bool ignore_OOB =
false
185 index_t max_iter=1000,
double eps = 1e-3
210 bool direct_solver =
false
Factorization
Factorization methods.
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.
IterativeSolver
Iterative Solvers.
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.
index_t get_n() const
Gets the number of columns.
Matrix(NLMatrix impl)
Matrix constructor.
~Matrix() override
Matrix destructor.
void mult(const Vector *x, Vector *y) const
Computes a matrix vector product.
Preconditioner
Preconditioners.
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.
Base class for all objects in the GOM system.
geo_index_t index_t
The type for storing and manipulating indices.
Global Graphite namespace.
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.