@@ -28,12 +28,6 @@ void test_RPQMatrixConc(void)
2828 OK (fclose (fA ));
2929 OK (fclose (fB ));
3030
31- GrB_Index nvalsA , nvalsB ;
32- GrB_Matrix_nvals (& nvalsA ,A );
33- GrB_Matrix_nvals (& nvalsB ,B );
34- fprintf (stderr ,"\nDEBUG: A:%lu and B:%lu\n" ,nvalsA ,nvalsB );
35-
36-
3731 RpqMatrixPlan graphA = {
3832 .op = RPQ_MATRIX_OP_LABEL ,
3933 .lhs = NULL ,
@@ -65,7 +59,7 @@ void test_RPQMatrixConc(void)
6559 GrB_Index expected_nvasl = 14 ;
6660 GrB_Info res = LAGraph_RPQMatrix (& graphKleene ,msg );
6761 GrB_Index result = LAGraph_RpqMatrix_getnnz (& graphKleene );
68- fprintf (stderr ,"\nDEBUG: result: %lu" ,result );
62+ // fprintf(stderr,"\nDEBUG: result: %lu",result);
6963 TEST_CHECK (result == expected_nvasl );
7064 LAGraph_Finalize (msg );
7165}
@@ -88,10 +82,6 @@ void test_RPQMatrixLor(void)
8882 OK (fclose (fA ));
8983 OK (fclose (fB ));
9084
91- GrB_Index nvalsA , nvalsB ;
92- GrB_Matrix_nvals (& nvalsA ,A );
93- GrB_Matrix_nvals (& nvalsB ,B );
94- fprintf (stderr ,"\nDEBUG: A:%lu and B:%lu\n" ,nvalsA ,nvalsB );
9585 RpqMatrixPlan graphA = {
9686 .op = RPQ_MATRIX_OP_LABEL ,
9787 .lhs = NULL ,
@@ -125,13 +115,13 @@ void test_RPQMatrixLor(void)
125115 GrB_Matrix result_matrix = graphKleene .res_mat ;
126116 GrB_Index result ;
127117 GrB_Matrix_nvals (& result ,result_matrix );
128- fprintf (stderr ,"\nDEBUG: result: %lu" ,result );
118+ // fprintf(stderr,"\nDEBUG: result: %lu",result);
129119 TEST_CHECK (result == expected_nvasl );
130120 LAGraph_Finalize (msg );
131121}
132122
133123TEST_LIST = {
134124 // {"RPQMatrixKleene", test_RPQMatrixKleene},
135125 {"RPQMatrixConc" , test_RPQMatrixConc },
136- // {"RPQMatrixLor", test_RPQMatrixLor},
126+ {"RPQMatrixLor" , test_RPQMatrixLor },
137127 {NULL , NULL }};
0 commit comments