From 368f17a4142221a851784b9da37a985c806f5fcc Mon Sep 17 00:00:00 2001 From: Jasper Date: Tue, 9 Sep 2025 12:18:50 +0200 Subject: Removed useless declaration in LR decomposition --- matrix.c | 1 - 1 file changed, 1 deletion(-) (limited to 'matrix.c') diff --git a/matrix.c b/matrix.c index 5038b91..646be42 100644 --- a/matrix.c +++ b/matrix.c @@ -339,7 +339,6 @@ Matrix **matrix_LR(const Matrix *A, const Vector *b) Matrix **result = malloc(sizeof(Matrix) * 2); result[0] = L; result[1] = A_curr; - result[2] = NULL; return result; } -- cgit v1.2.3