format project

This commit is contained in:
2024-02-23 10:14:23 +01:00
parent efd0a88868
commit 82ad2e0696
10 changed files with 27 additions and 22 deletions

View File

@@ -14,15 +14,15 @@ int main() {
std::cout << "Opening " << fileName << " ...\n";
std::ifstream in{fileName};
std::ifstream in {fileName};
Matrix mat{1, 1}, imageMat{1, 1}, noyauMat{1, 1};
Matrix mat {1, 1}, imageMat {1, 1}, noyauMat {1, 1};
in >> mat >> imageMat >> noyauMat;
Vect image{imageMat};
Vect noyau{noyauMat};
Vect image {imageMat};
Vect noyau {noyauMat};
Solver solver{mat};
Solver solver {mat};
assert(solver.Image() == image);
assert(solver.Noyau() == noyau);