Skip to content

Commit 913f0b0

Browse files
reorg to stable
1 parent 2afba1e commit 913f0b0

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

experimental/algorithm/LAGraph_HelloWorld.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
#include "LG_internal.h"
5050
#include "LAGraphX.h"
5151

52-
GrB_Info LAGraph_HelloWorld // a simple algorithm, just for illustration
52+
int LAGraph_HelloWorld // a simple algorithm, just for illustration
5353
(
5454
// output
5555
GrB_Matrix *Yhandle, // Y, created on output
@@ -89,6 +89,7 @@ GrB_Info LAGraph_HelloWorld // a simple algorithm, just for illustration
8989
// free workspace and return result
9090
//--------------------------------------------------------------------------
9191

92+
LG_FREE_WORK ;
9293
(*Yhandle) = Y ;
9394
return (GrB_SUCCESS) ;
9495
}

include/LAGraphX.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -859,7 +859,8 @@ int LAGraph_SquareClustering
859859
// a simple example of an algorithm
860860
//------------------------------------------------------------------------------
861861

862-
GrB_Info LAGraph_HelloWorld // a simple algorithm, just for illustration
862+
LAGRAPH_PUBLIC
863+
int LAGraph_HelloWorld // a simple algorithm, just for illustration
863864
(
864865
// output
865866
GrB_Matrix *Yhandle, // Y, created on output

rtdocs/experimental.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ which serves as a template for creating new algorithms:
4040
the prefix test_*, the CMake script will compile it and
4141
include it in the "make test" target.
4242

43-
.. _algorithm/LAGraph_HelloWorld.c: https://github.com/GraphBLAS/LAGraph/blob/reorg/experimental/algorithm/LAGraph_HelloWorld.c
44-
.. _benchmark/helloworld2_demo.c: https://github.com/GraphBLAS/LAGraph/blob/reorg/experimental/benchmark/helloworld2_demo.c
45-
.. _benchmark/helloworld_demo.c: https://github.com/GraphBLAS/LAGraph/blob/reorg/experimental/benchmark/helloworld_demo.c
46-
.. _test/test_HelloWorld.c: https://github.com/GraphBLAS/LAGraph/blob/reorg/experimental/test/test_HelloWorld.c
43+
.. _algorithm/LAGraph_HelloWorld.c: https://github.com/GraphBLAS/LAGraph/blob/stable/experimental/algorithm/LAGraph_HelloWorld.c
44+
.. _benchmark/helloworld2_demo.c: https://github.com/GraphBLAS/LAGraph/blob/stable/experimental/benchmark/helloworld2_demo.c
45+
.. _benchmark/helloworld_demo.c: https://github.com/GraphBLAS/LAGraph/blob/stable/experimental/benchmark/helloworld_demo.c
46+
.. _test/test_HelloWorld.c: https://github.com/GraphBLAS/LAGraph/blob/stable/experimental/test/test_HelloWorld.c

0 commit comments

Comments
 (0)