Skip to content

Commit 428e0a2

Browse files
Merge remote-tracking branch 'refs/remotes/origin/v1.3.x' into v1.3.x
2 parents 7108af4 + e17db94 commit 428e0a2

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

experimental/algorithm/LAGraph_coloring_MIS.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ int LAGraph_coloring_MIS
2222
(
2323
// output
2424
GrB_Vector *color,
25-
int *num_colors,
25+
int *num_colors, // FIXME: should be int64_t
2626

2727
// input
2828
LAGraph_Graph G,

experimental/algorithm/LAGraph_coloring_independent_set.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ int LAGraph_coloring_independent_set
2020
(
2121
// output
2222
GrB_Vector *color,
23-
int *num_colors,
23+
int *num_colors, // FIXME: should be int64_t
2424

2525
// input
2626
LAGraph_Graph G,

experimental/utility/LAGraph_Random_Matrix.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
// Contributed by Timothy A. Davis, Texas A&M University
1515

16+
// TODO: reconsider the API. Pass in int64_t nvals instead of density?
17+
// and use nvals = -1 for generating a full matrix, say?
18+
1619
//------------------------------------------------------------------------------
1720

1821
// Constructs a sparse roughly uniformly distributed random matrix with roughly

0 commit comments

Comments
 (0)