-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathla_tests.f90
54 lines (40 loc) · 1.24 KB
/
la_tests.f90
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
program la_tests
use test_linalg_aux
use test_linalg_eye
use test_linalg_solve
use test_linalg_inverse
use test_linalg_least_squares
use test_linalg_determinant
use test_linalg_svd
use test_linalg_eig
use test_linalg_qr
use test_linalg_norms
use test_linalg_schur
use test_linalg_pseudoinverse
implicit none(type, external)
logical :: error
call test_formats(error)
if (error) error stop 'test_formats'
call test_solve(error)
if (error) error stop 'test_solve'
call test_inverse_matrix(error)
if (error) error stop 'test_inverse_matrix'
call test_least_squares(error)
if (error) error stop 'test_least_squares'
call test_matrix_determinant(error)
if (error) error stop 'test_determinant'
call test_eye(error)
if (error) error stop 'test_eye'
call test_svd(error)
if (error) error stop 'test_svd'
call test_eig(error)
if (error) error stop 'test_eig'
call test_norms(error)
if (error) error stop 'test_norms'
call test_schur(error)
if (error) error stop 'test_schur'
call test_pseudoinverse_matrix(error)
if (error) error stop 'test_pseudoinverse'
!> All tests passed
stop 0
end program la_tests