16 lines
202 B
C++
16 lines
202 B
C++
#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;
|
|
}; |