Skip to content

Commit

Permalink
Adding scaladoc links
Browse files Browse the repository at this point in the history
  • Loading branch information
riomus committed Mar 31, 2017
1 parent 0ec469b commit b15f52f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
5 changes: 4 additions & 1 deletion aapsp.rst
Expand Up @@ -23,7 +23,7 @@ Alghotim block scheme
Examples
----------------------

Alghoritm API lets to compute paths :
Alghoritm `API`_ lets to compute paths :

* For single vertex:

Expand Down Expand Up @@ -72,3 +72,6 @@ Alghoritm API lets to compute paths :
val graphWithPaths = ApproximatedShortestPathsAlgorithm.computeShortestPathsLengthsIterative(graph, (g:Graph[_,_])=>bucketSize)
val paths : VertexRDD[Iterable[(VertexId, JDouble)] = graphWithPaths.vertices
.. _API: http://sparkling-graph.github.io/sparkling-graph/latest/api/#ml.sparkling.graph.operators.algorithms.aproximation.ApproximatedShortestPathsAlgorithm$
8 changes: 7 additions & 1 deletion partitioning.rst
Expand Up @@ -3,6 +3,7 @@ Partitioning methods

Library provides multiple methods for graph partitioning. By default GraphX provides only random methods, in SparklingGraph you can find approaches that are using structural properties of graphs in order to minimize computation times and storage overheads.

All methods can be found in `partitioning package`_


Propagation bases
Expand Down Expand Up @@ -77,4 +78,9 @@ That is solution that use PSCAN alghoritm in conduction with epsilon parameter s
val graph = ???
// load your graph (for example using Graph loading API)
val numberOfRequiredPartitions=24
val partitionedGraph = PSCANBasedPartitioning.partitionGraphBy(graph,numberOfRequiredPartitions)
val partitionedGraph = PSCANBasedPartitioning.partitionGraphBy(graph,numberOfRequiredPartitions)
.. _partitioning package: http://sparkling-graph.github.io/sparkling-graph/latest/api/#ml.sparkling.graph.operators.partitioning.package

0 comments on commit b15f52f

Please sign in to comment.