From b9a5100cb0d7b54b35cf45dd6a6e40610a870fb2 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Thu, 29 Feb 2024 14:05:12 +0100 Subject: [PATCH] fix typo --- src/Vect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Vect.cpp b/src/Vect.cpp index e3a2368..3b3e7a7 100644 --- a/src/Vect.cpp +++ b/src/Vect.cpp @@ -33,7 +33,7 @@ bool Vect::operator==(const Vect& other) const { if (GetDimension() != other.GetDimension() || GetCardinal() != other.GetCardinal()) return false; - // on vérifie si chaque vecteur de la deuxième base appartient à la première base + // on vérifie si chaque vecteur de la deuxième base appartient à l'espace vectoriel engendré par la première base for (std::size_t i = 0; i < GetCardinal(); i++) { Vect base = *this; base.AddVector(other.m_Data.SubMatrix(0, i, GetDimension(), 1));