-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
52 lines (35 loc) · 723 Bytes
/
main.cpp
File metadata and controls
52 lines (35 loc) · 723 Bytes
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
//Bedrich Pisl - Programming in C++, MFF, 2013/2014
#include "test.h"
using namespace std;
int main()
{
if(test1() != 0)
return -1;
if(test2() != 0)
return -1;
if(test3() != 0)
return -1;
if(test4() != 0)
return -1;
if(test_arithmetical_operations() != 0)
return -1;
if(template_iterator() != 0)
return -1;
if(inversion_test() != 0)
return -1;
if(typedef_test() != 0)
return -1;
if(matrix_of_matrices_test() != 0)
return -1;
//if(checked_test() != 0)
// return -1;
if(determinant_and_ref_test() != 0)
return -1;
if(qr_decomposition_test() != 0)
return -1;
if(eigenvalues_test() != 0)
return -1;
if(definite_and_jordan_form() != 0)
return -1;
return 0;
}