From 7cf4218ba132e6ea7022e3c517c01f212056dbe2 Mon Sep 17 00:00:00 2001 From: Armando Luiz Nicolini Delgado <nicolui@inf.ufpr.br> Date: Tue, 28 Jun 2022 10:46:32 -0300 Subject: [PATCH] =?UTF-8?q?/*=20altera=C3=A7=C3=A3o=20no=20coment=C3=A1rio?= =?UTF-8?q?=20da=20gera=C3=A7=C3=A3o=20de=20matriz=20diagonalmente=20domin?= =?UTF-8?q?ante=20*/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/sislin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/sislin.c b/utils/sislin.c index 610b118..c5a9287 100644 --- a/utils/sislin.c +++ b/utils/sislin.c @@ -126,7 +126,7 @@ void iniSisLin (SistLinear_t *SL, tipoSistLinear_t tipo, real_t coef_max) SL->b[combDst] = SL->b[combSrc1] + SL->b[combSrc2]; } else if (tipo == diagDominante) { - // aumenta o expoente dos termos da diagonal principal + // aumenta o valor dos termos da diagonal principal for (unsigned int i=0; i<n; ++i) { real_t soma = 0.0; for (unsigned int j=0; j < i; ++j) soma += SL->A[i][j]; -- GitLab