From c0160343e0dc4d206dc816cd5a8bc9b054d8f9cf Mon Sep 17 00:00:00 2001 From: Bora Date: Thu, 29 May 2025 09:33:08 +0200 Subject: [PATCH] halo --- matrixOp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrixOp.c b/matrixOp.c index 4861a18..5ad0900 100644 --- a/matrixOp.c +++ b/matrixOp.c @@ -17,7 +17,7 @@ Matrix* CreateMatrixZero(int rows, int cols) { // Erstellt eine Matrix mit Zufallswerten zwischen -100 und 99 Matrix* CreateMatrixRand(int rows, int cols) { - srand(time(NULL)); // Initialisiert Zufallszahlengenerator (Achtung: bei jedem Aufruf neu!) + srand(time(NULL)); // Initialisiert Zufallszahlengenerator Matrix *m = CreateMatrixZero(rows, cols); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) {