refactor project

This commit is contained in:
2024-02-23 10:48:43 +01:00
parent 82ad2e0696
commit 3b07ae783f
8 changed files with 103 additions and 119 deletions

9
src/Gauss.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
class Matrix;
namespace Gauss {
void GaussJordan(Matrix& mat, bool reduite, bool normalise);
} // namespace Gauss