GetFEM  5.4.2
gmm.h
Go to the documentation of this file.
1 /* -*- c++ -*- (enables emacs c++ mode) */
2 /*===========================================================================
3 
4  Copyright (C) 2002-2020 Yves Renard
5 
6  This file is a part of GetFEM
7 
8  GetFEM is free software; you can redistribute it and/or modify it
9  under the terms of the GNU Lesser General Public License as published
10  by the Free Software Foundation; either version 3 of the License, or
11  (at your option) any later version along with the GCC Runtime Library
12  Exception either version 3.1 or (at your option) any later version.
13  This program is distributed in the hope that it will be useful, but
14  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16  License and GCC Runtime Library Exception for more details.
17  You should have received a copy of the GNU Lesser General Public License
18  along with this program; if not, write to the Free Software Foundation,
19  Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
20 
21  As a special exception, you may use this file as it is a part of a free
22  software library without restriction. Specifically, if other files
23  instantiate templates or use macros or inline functions from this file,
24  or you compile this file and link it with other files to produce an
25  executable, this file does not by itself cause the resulting executable
26  to be covered by the GNU Lesser General Public License. This exception
27  does not however invalidate any other reasons why the executable file
28  might be covered by the GNU Lesser General Public License.
29 
30 ===========================================================================*/
31 
32 /**@file gmm.h
33  @author Yves Renard <Yves.Renard@insa-lyon.fr>
34  @date October 13, 2002.
35  @brief Include common gmm files.
36 */
37 #ifndef GMM_H__
38 #define GMM_H__
39 
40 #include "gmm_kernel.h"
41 #include "gmm_dense_lu.h"
42 #include "gmm_dense_qr.h"
43 
44 #include "gmm_iter_solvers.h"
45 #include "gmm_condition_number.h"
46 #include "gmm_inoutput.h"
47 
48 #include "gmm_lapack_interface.h"
49 #include "gmm_superlu_interface.h"
50 #include "gmm_range_basis.h"
51 
52 #include "gmm_domain_decomp.h"
53 
54 #endif // GMM_H__
gmm_lapack_interface.h
gmm interface for LAPACK
gmm_dense_lu.h
LU factorizations and determinant computation for dense matrices.
gmm_superlu_interface.h
Interface with SuperLU (LU direct solver for sparse matrices).
gmm_iter_solvers.h
Include standard gmm iterative solvers (cg, gmres, ...)
gmm_domain_decomp.h
Domain decomposition.
gmm_inoutput.h
Input/output on sparse matrices.
gmm_range_basis.h
Extract a basis of the range of a (large sparse) matrix from the columns of this matrix.
gmm_kernel.h
Include the base gmm files.
gmm_dense_qr.h
Dense QR factorization.
gmm_condition_number.h
computation of the condition number of dense matrices.