Skip to content

Commit 79f4172

Browse files
committed
Fix: forget update matrix after changing
1 parent 83aa68c commit 79f4172

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

experimental/algorithm/LAGraph_CFL_reachability_advanced.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,7 @@ void block_matrix_reduce(Matrix *matrix, Matrix *input) {
409409
}
410410

411411
GxB_Matrix_build_Scalar(matrix->base, rows, cols, scalar_true, input->nvals);
412+
matrix_update(matrix);
412413

413414
free(rows);
414415
free(cols);
@@ -423,6 +424,7 @@ void block_matrix_repeat_into_vector(Matrix *matrix, Matrix *input,
423424
}
424425

425426
GxB_Matrix_concat(matrix->base, tiles, block_count, 1, GrB_NULL);
427+
matrix_update(matrix);
426428
}
427429

428430
GrB_Info matrix_dup(Matrix *output, Matrix *input) {

0 commit comments

Comments
 (0)