This commit is contained in:
16
src/Solver.h
Normal file
16
src/Solver.h
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user