From 77a573c722301f10157584ddcc33523a05209498 Mon Sep 17 00:00:00 2001 From: Armando Luiz Nicolini Delgado <nicolui@inf.ufpr.br> Date: Wed, 30 Mar 2022 08:28:59 -0300 Subject: [PATCH] =?UTF-8?q?/*=20Mudan=C3=A7a=20na=20semente=20de=20rand()?= =?UTF-8?q?=20*/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- matmult.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/matmult.c b/matmult.c index 36fea76..3b44396 100644 --- a/matmult.c +++ b/matmult.c @@ -51,7 +51,8 @@ int main (int argc, char *argv[]) /* ================ FIM DO TRATAMENTO DE LINHA DE COMANDO ========= */ - srand(time(NULL)); + // srand(time(NULL)); + srand(20212); resPtr = (double *) calloc (n, sizeof(double)); resPtrRow = (double *) calloc (n, sizeof(double)); -- GitLab