Skip to content

Commit 53d2c6c

Browse files
dperry17Olumayowa-Olowomeye
authored andcommitted
made initial algorithm for the min cut
1 parent 42a1f15 commit 53d2c6c

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

include/LAGraphX.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1564,6 +1564,17 @@ int LAGraph_MinCut(
15641564
char *msg
15651565
);
15661566

1567+
LAGRAPHX_PUBLIC
1568+
int LAGraph_MinCut(
1569+
//outputs
1570+
GrB_Vector S,
1571+
GrB_Vector S_bar,
1572+
// inputs
1573+
GrB_Matrix R, //residual graph
1574+
GrB_Index s, //source node index
1575+
GrB_Index t, //sink node index
1576+
char *msg
1577+
);
15671578
//------------------------------------------------------------------------------
15681579
// Louvain sub-algorithms
15691580
//------------------------------------------------------------------------------

0 commit comments

Comments
 (0)