CGAL 4.4 - Planar Parameterization of Triangulated Surface Meshes
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
SparseLinearAlgebraTraits_d Concept Reference

Definition

The concept SparseLinearAlgebraTraits_d is used to solve sparse linear systems A × X = B.

Refines:
LinearAlgebraTraits_d
Has Models:

CGAL::Eigen_solver_traits<T>

OpenNL::DefaultLinearSolverTraits<COEFFTYPE, MATRIX, VECTOR, SOLVER> in OpenNL package

OpenNL::SymmetricLinearSolverTraits<COEFFTYPE, MATRIX, VECTOR, SOLVER> in OpenNL package

See Also
SparseLinearAlgebraTraits_d::Matrix
SparseLinearAlgebraTraits_d::Vector

Concepts

conceptMatrix
 SparseLinearAlgebraTraits_d::Matrix is a concept of a sparse matrix class. More...
 
conceptVector
 SparseLinearAlgebraTraits_d::Vector is a concept of a vector that can be multiplied by a sparse matrix. More...
 

Types

typedef unspecified_type Matrix
 
typedef unspecified_type Vector
 
typedef unspecified_type NT
 

Creation

 SparseLinearAlgebraTraits_d ()
 Default constructor.
 

Operations

bool linear_solver (const Matrix &A, const Vector &B, Vector &X, NT &D)
 Solve the sparse linear system A × X = B. More...
 

Member Function Documentation

bool SparseLinearAlgebraTraits_d::linear_solver ( const Matrix A,
const Vector B,
Vector X,
NT D 
)

Solve the sparse linear system A × X = B.

Return true on success. The solution is then (1/D) × X.

Precondition
A.row_dimension() == B.dimension()
A.column_dimension() == X.dimension()