This repository has been archived on 2025-02-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Pivot/src/Solver.h
Persson-dev 4ffeea8900
All checks were successful
Linux arm64 / Build (push) Successful in 36s
image et noyau
2024-02-14 21:35:26 +01:00

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;
};