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

View File

@@ -1,3 +1,4 @@
#include "Gauss.h"
#include "Solver.h"
#include <iostream>
@@ -52,7 +53,7 @@ void prompt() {
mat.Print();
mat.GaussJordan(true);
Gauss::GaussJordan(mat, true, true);
mat.Print();
}