image et noyau
All checks were successful
Linux arm64 / Build (push) Successful in 36s

This commit is contained in:
2024-02-14 21:35:26 +01:00
parent e1f501237d
commit 4ffeea8900
3 changed files with 57 additions and 16 deletions

16
src/Solver.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include "Vect.h"
class Solver {
private:
Matrix m_Matrix;
public:
Solver(const Matrix& mat);
~Solver() {}
Vect Image() const;
Vect Noyau() const;
std::size_t Rang() const;
};