3535
3636#include "LG_internal.h"
3737
38- // FIXME : need both basic and expert methods; this is mixed
39- // FIXME : match filename to function name (this name is OK)
38+ // TODO : need both basic and expert methods; this is mixed
39+ // TODO : match filename to function name (this name is OK)
4040// vanilla OK: no GxB used here
4141
4242int LAGraph_KCore_All
@@ -75,7 +75,7 @@ int LAGraph_KCore_All
7575 LG_ASSERT_MSG (false, -1005 , "G->A must be symmetric" ) ;
7676 }
7777
78- // FIXME : in basic: compute it, this is Advanced:
78+ // TODO : in basic: compute it, this is Advanced:
7979 // no self edges can be present
8080 LG_ASSERT_MSG (G -> nself_edges == 0 , -1004 , "G->nself_edges must be zero" ) ;
8181
@@ -84,7 +84,7 @@ int LAGraph_KCore_All
8484 GrB_Index n , todo , nvals , maxDeg ;
8585 GRB_TRY (GrB_Matrix_nrows (& n , A )) ;
8686
87- // FIXME : do not call Cached in an advanced algorithm, this is Basic:
87+ // TODO : do not call Cached in an advanced algorithm, this is Basic:
8888 //create deg vector using out_degree property
8989 LG_TRY (LAGraph_Cached_OutDegree (G , msg )) ;
9090
@@ -106,7 +106,7 @@ int LAGraph_KCore_All
106106 //change deg vector to int32 if needed
107107 if (int_type == GrB_INT32 )
108108 {
109- // FIXME : deg is freed; it should never have been constructed above
109+ // TODO : deg is freed; it should never have been constructed above
110110 GrB_free (& deg ) ;
111111 GRB_TRY (GrB_Vector_new (& deg , int_type , n )) ;
112112 GRB_TRY (GrB_assign (deg , G -> out_degree , NULL , G -> out_degree , GrB_ALL , n , NULL )) ;
0 commit comments