-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
272 lines (220 loc) · 7.16 KB
/
main.cpp
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#include <iostream>
#include <vector>
#include <cassert>
#include <string>
#include "SparseMatrix.h"
void test_element(){
std::cout << "**********TEST ELEMENT**********" << std::endl;
SparseMatrix<int>::element e1(3,3,3);
std::cout << "stampa element: " << e1.i << " " << e1.j << " " << e1.value << std::endl;
//testo se i metodi di default fondamentali vanno bene
SparseMatrix<int>::element e2(e1);
assert(e1.i == e2.i);
assert(e1.j == e2.j);
assert(e1.value == e2.value);
}
void test_constructor(){
std::cout << "**********TEST COSTRUTTORI**********" << std::endl;
SparseMatrix<float> sm2(3,3,3.3); // costruttore con parametri
assert(sm2.getNumCols() == 3);
assert(sm2.getNumRows() == 3);
assert(sm2.getDefaultValue() == (float)3.3);
assert(sm2.getNumElement() == 0);
//copy constructor
SparseMatrix<float> sm3(sm2);
assert(sm3.getNumCols() == 3);
assert(sm3.getNumRows() == 3);
assert(sm3.getDefaultValue() == (float)3.3);
assert(sm3.getNumElement() == 0);
// controllo che abbia effettivamente creato una copia
sm2.add(2,2,3.3);
assert(sm2.getNumElement() == sm3.getNumElement() +1);
// costruttore =
SparseMatrix<float> sm4(6,6,10.9);
assert(sm4.getDefaultValue() == (float)10.9);
sm4 = sm2;
assert(sm4.getNumCols() == 3);
assert(sm4.getNumRows() == 3);
assert(sm4.getDefaultValue() == (float)3.3);
assert(sm4.getNumElement() == 1);
//costruttore con matrice di altro tipo Q
SparseMatrix<int> sm5(sm4);
assert(sm5.getNumCols() == 3);
assert(sm5.getNumRows() == 3);
assert(sm5.getDefaultValue() == 3); //controllo che abbia convertito il tipo
assert(sm5.getNumElement() == 1);
}
// controllo che l'accesso in lettura sia const, per semplicita nella scrittura del
// metodo definisco T = int
void test_constness(const SparseMatrix<int> &sm){
std::cout << "**********TEST CONSTNESS**********" << std::endl;
sm(2,2);
sm.getNumCols();
sm.getNumRows();
int dv = sm.getDefaultValue();
sm.getNumElement();
dv = 999;
assert(sm.getDefaultValue() == 9);
}
void test_add_getter(){
std::cout << "**********TEST ADD & GETTER**********" << std::endl;
//matrice 3x3
SparseMatrix<int> sm(3,3,9);
try{
sm.add(0,0,8); //inserimento in testa alla matrice
sm.add(2,2,8); //inserimento in fondo alla matrice
sm.add(1,2,8); //inserimento casuale
assert(sm.getNumElement() == 3);
// sovrascrivo un elemento già inserito e controllo che non aumenti la size
sm.add(1,2,7);
assert(sm.getNumElement() == 3);
// provo ad inserire un elemento al di fuori degli indici e controllare l'eccezione
try{
sm.add(3,5,3);
}
catch(index_out_of_bounds_exception e){
std::cerr << e.what() << std::endl;
assert(sm.getNumElement() == 3); // controllo che non sia aumentata la size
}
}
catch(...){} // catcho gli errori sulla memoria
// prova dei get
assert(sm.getNumCols() == 3);
assert(sm.getNumRows() == 3);
assert(sm.getDefaultValue() == 9);
assert(sm(2,2) == 8); // accesso in lettura
// controllo che operator() ritorni un valore costante
SparseMatrix<int>::value_type tmp = sm(2,2);
tmp = 11;
assert(sm(2,2) == 8);
assert(sm(1,1) == 9); //leggo un valore di default
test_constness(sm);
}
class car{
public: // tutto pubblico per semplicita!!!!
int year;
double km;
car() : year(0), km(0.0){}
car(int y, double k) : year(y), km(k){}
bool equal(car c2){
return (year == c2.year && km == c2.km);
}
};
void test_custom(){
std::cout << "**********TEST CUSTOM TYPE**********" << std::endl;
car temp(10,10000);
SparseMatrix<car> sm(2,2,temp);
assert(temp.equal(sm(0,0))); // controllo che gli elementi non inseriti corrispondano al valore di default
try{
sm.add(0,1,car(10,99));
}
catch(...){}
assert(sm.getNumElement() == 1);
assert(car(10,99).equal(sm(0,1)));
}
// mi dice se un intero è pari
struct is_even {
bool operator()(int value) const {
return (value%2) == 0;
}
};
// mi dice se ha fatto piu di 100 km
struct old_car {
bool operator()(const car &tmp) const {
return tmp.km > 100;
}
};
struct People{
int anno;
double peso;
public:
People() : anno(0), peso(0){}
People(int a, double p) : anno(a), peso(p){}
// altri metodi uso quelli di default
};
struct test_people{
bool operator()(const People &tmp) const {
return tmp.anno > 9 ;
}
};
void test_evaluate(){
std::cout << "**********TEST EVALUATE**********" << std::endl;
try{
SparseMatrix<int> sm(5,5,8);
assert(evaluate(sm,is_even()) == 25);
sm.add(0,0,1);
sm.add(0,2,9);
assert(evaluate(sm,is_even()) == 23);
sm.add(4,4,6); //era già pari ma gli cambio il valore rispetto al default
assert(evaluate(sm,is_even()) == 23);
// provo con tipi custom
car temp(10,10);
SparseMatrix<car> zero(2,2,temp);
assert(evaluate(zero,old_car()) == 0);
car temp2(10,101);
SparseMatrix<car> sm2(2,2,temp2);
assert(evaluate(sm2,old_car()) == 4);
sm2.add(0,1,car(9,99));
assert(evaluate(sm2,old_car()) == 3);
}
catch(...){}
// creo una matrice con una struct e provo ad applicare evaluate
People p0(10,11.3);
SparseMatrix<People> smp(3,3,p0);
assert(evaluate(smp,test_people()) == 9);
}
void test_iterator_const(const SparseMatrix<int> &sm) {
std::cout << "**********TEST ITERATOR CONST**********" << std::endl;
SparseMatrix<int> ::const_iterator i, ie;
i = sm.begin();
ie = sm.end();
// stampo tutti i valori
while(i != ie){
SparseMatrix<int>::element e1(*i);
std::cout << (*i).value << " ";
i ++ ; // testato anche i++
}
std::cout << std::endl;
}
void test_iterator_NO_const(SparseMatrix<int> &sm) {
std::cout << "**********TEST ITERATOR NO CONST**********" << std::endl;
SparseMatrix<int> ::iterator i, ie;
i = sm.begin();
ie = sm.end();
// stampo tutti i valori
while(i != ie){
(*i).value = 100; // modifico i valori
SparseMatrix<int>::element e1(*i);
std::cout << e1.value << " ";
++i; // testato anche i++
}
std::cout << std::endl;
}
void test_iterator(){
SparseMatrix<int> sm(3,3,1);
try{
// inserisco valori in tutta la matrice
for(unsigned int i = 0; i<3; ++i)
for(unsigned int j = 0; j<3; ++j)
sm.add(i,j, (j+i));
}
catch(...){} //catcho possibili errori di memoria, gli indici sono sicuro che siano corretti
// stampo tutto con iteratori COSTANTI
test_iterator_const(sm);
// stampo e modifico con iteratori NON costanti
test_iterator_NO_const(sm);
assert(sm(0,1) == 100); // controllo se sono cambiati i valori
}
int main(){
test_element(); // ma element va privato????!
test_constructor();
test_add_getter();
test_custom();
test_evaluate();
test_iterator();
/*
std::vector<SparseMatrix<int>> sm(5);
SparseMatrix<int> temp(3,3,3);
sm.push_back(temp); */
return 0;
}