Skip to content

Commit

Permalink
fix for comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jackylk committed Mar 7, 2015
1 parent 87be83b commit b6235e6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ object LiveJournalPageRank {
def main(args: Array[String]) {
if (args.length < 1) {
System.err.println(
"Usage: LiveJournalPageRank <edge_list_file> --numEPart=<num_edge_partitions>\n" +
"Usage: LiveJournalPageRank <edge_list_file> --numEPart=<num_edge_partitions> [other options]\n" +
" --numEPart=<num_edge_partitions>\n" +
" The number of partitions for the graph's edge RDD.\n" +
" [--tol=<tolerance>]\n" +
" The tolerance allowed at convergence (smaller => more accurate). Default is " +
"0.001.\n" +
" [--output=<output_file>]\n" +
" If specified, the file to write the ranks to.\n" +
" [--numEPart=<num_edge_partitions>]\n" +
" The number of partitions for the graph's edge RDD.\n" +
" [--partStrategy=RandomVertexCut | EdgePartition1D | EdgePartition2D | " +
"CanonicalRandomVertexCut]\n" +
" The way edges are assigned to edge partitions. Default is RandomVertexCut.")
Expand Down

0 comments on commit b6235e6

Please sign in to comment.