Library 5

added integer tests
This commit is contained in:
Alessandro Ferro
2021-06-04 22:16:34 +02:00
parent f5eb9cda23
commit 81ac5d9538
6 changed files with 421 additions and 79 deletions

View File

@@ -293,20 +293,12 @@ void MatrixCSR<Data>::debug(){
tmp = tmp->next;
}
std::cout << "R VECTOR:" << '\n';
std::cout << "\nR VECTOR:" << '\n';
for(ulong i=0; i<R.Size();++i){
std::cout << R[i] << '\n';
}
std::cout<<std::endl;
std::cout<<std::endl;
//// print
// for(int i=0; i<rows; ++i){
// for(int j=0; j<columns ; ++j){
// std::cout<<(*this)(i,j)<<" ";
// }
// std::cout<<std::endl;
// }
}
/* ************************************************************************** */