Skip to content

Commit b13a244

Browse files
committed
Test: add tests for adv CFL reachability algorithm
1 parent 56d0fa2 commit b13a244

File tree

2 files changed

+759
-3
lines changed

2 files changed

+759
-3
lines changed

experimental/algorithm/LAGraph_CFL_reachability_advanced.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,8 @@ GrB_Info LAGraph_CFL_reachability_adv(
256256

257257
GrB_Matrix matrix;
258258
GRB_TRY(GrB_Matrix_new(&matrix, GrB_BOOL, nrows, ncols));
259-
matrices[i] = ((optimizations & OPT_LAZY) || (optimizations & OPT_BLOCK))
260-
? CFL_matrix_from_base_lazy(matrix)
261-
: CFL_matrix_from_base(matrix);
259+
matrices[i] = ((optimizations & OPT_LAZY)) ? CFL_matrix_from_base_lazy(matrix)
260+
: CFL_matrix_from_base(matrix);
262261

263262
GRB_TRY(GrB_Matrix_new(&matrix, GrB_BOOL, nrows, ncols));
264263
temp_matrices[i] = CFL_matrix_from_base(matrix);

0 commit comments

Comments
 (0)