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 5a5c247019
Some checks failed
Linux arm64 / Build (push) Failing after 1m56s
english name for symbols
2024-02-23 11:03:38 +01:00

20 lines
244 B
C++

#pragma once
#include "Vect.h"
class Solver {
private:
Matrix m_Matrix;
public:
Solver(const Matrix& mat);
~Solver() {}
Vect Image() const;
Vect Kernel() const;
VectAffine TriangularSystem() const;
std::size_t Rank() const;
};