Skip to content

Latest commit

 

History

History
55 lines (41 loc) · 3.61 KB

README.md

File metadata and controls

55 lines (41 loc) · 3.61 KB

GraphScope algorithms

This Project contains the Java implementation of sample Graph analytical algorithms like SSSP, PageRank, e.t.c.

Available Algorithms

Algorithms Property Graph-sequential Property Graph-sequential Simple Graph-sequential Simple Graph-sequential
SSSP propertry-sssp-sequential propertry-sssp-parallel simple-sssp-sequentail simple-sssp-parallel
PageRank propertry-pr-sequential propertry-pr-parallel simple-pr-sequentail simple-pr-parallel
WCC propertry-wcc-sequential propertry-wcc-parallel simple-wcc-sequentail simple-wcc-parallel
BFS propertry-bfs-sequential propertry-bfs-parallel simple-bfs-sequentail simple-bfs-parallel
Traverse propertry-traverse-sequential propertry-traverse-parallel simple-traverse-sequentail simple-traverse-parallel

Build

You need to install grape-jdk first.

git clone https://github.com/alibaba/GraphScope.git
cd analytical_engine/java/grape-jdk
mvn clean install

Then build this project with

mvn clean package