trop de trucs
All checks were successful
Linux arm64 / Build (push) Successful in 2m33s

This commit is contained in:
2024-05-14 13:00:59 +02:00
parent d9e49d1319
commit a135df2e96
14 changed files with 98 additions and 214 deletions

View File

@@ -31,18 +31,6 @@ std::istream& operator>>(std::istream& stream, Matrix& mat) {
return stream;
}
std::ostream& operator<<(std::ostream& stream, const BigInt& nbre) {
stream << nbre.ToString();
return stream;
}
std::istream& operator>>(std::istream& stream, BigInt& nbre) {
long value;
stream >> value;
nbre = BigInt(value);
return stream;
}
Matrix LoadMatrix(const std::string& fileName) {
std::ifstream in {fileName};
if (!in) {