format project
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user