-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.h
executable file
·33 lines (27 loc) · 1.47 KB
/
main.h
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
/*
This file is part of software for the implementation of UCGLE method, under the supervision of Serge G. Petiton
Copyright (C) 2011—. Pierre-Yves AQUILANTI and Xinzhe WU <[email protected]> in Maison de la Simulation.
All rights reserved.
Permission to use, copy, modify and distribute this software for personal and educational use is hereby granted
without fee, provided that the above copyright notice appears in all copies and that both that copyright notice
and this permission notice appear in supporting documentation, and that the names of all authors are not used in
advertising or publicity pertaining to distribution of the software without specific, written prior permission.
Xinzhe WU and the author make no representations about the suitability of this software for any purpose. It is
provided "as is" without express or implied warranty.
You should have received a copy of the GNU Lesser General Public License along with UCGLE. If not, see
<http://www.gnu.org/licenses/>.
For more information, contact with Xinzhe WU <[email protected]>.
*/
#include "Libs/mpi_lsa_com.h"
#include "slepceps.h"
#include <unistd.h>
#include <sys/stat.h>
#include <time.h>
#include "./Solvers/GMRES/gmres.h"
#include "./Solvers/Arnoldi/arnoldi.h"
#include "./Libs/read_matrix.h"
#include "./Solvers/LS/lsqr.h"
#include "./Solvers/Father/father.h"
#include "./Libs/real2complex.h"
#include "./Solvers/GMRES/classical_gmres.h"