Skip to content
Snippets Groups Projects
Commit 7a0da477 authored by Reynold Xin's avatar Reynold Xin
Browse files

[HOTFIX] Build break due to https://github.com/apache/spark/pull/5128

parent a41b9c60
No related branches found
No related tags found
No related merge requests found
......@@ -25,8 +25,8 @@ import org.apache.spark.graphx._
/**
* PageRank algorithm implementation. There are two implementations of PageRank implemented.
*
* The first implementation uses the standalone [[Graph]] interface and runs PageRank for a fixed number
* of iterations:
* The first implementation uses the standalone [[Graph]] interface and runs PageRank
* for a fixed number of iterations:
* {{{
* var PR = Array.fill(n)( 1.0 )
* val oldPR = Array.fill(n)( 1.0 )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment