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));