more optimizations
Some checks failed
Linux arm64 / Build (push) Failing after 25s

This commit is contained in:
2024-05-09 15:56:59 +02:00
parent dc31f1f091
commit 5391b7b76a
8 changed files with 72 additions and 78 deletions

View File

@@ -34,8 +34,8 @@ void TestKernelImage() {
Matrix mat, imageMat, noyauMat;
in >> mat >> imageMat >> noyauMat;
Vect image {imageMat};
Vect noyau {noyauMat};
Vect image {std::move(imageMat)};
Vect noyau {std::move(noyauMat)};
Solver solver;