aboutsummaryrefslogtreecommitdiff
path: root/graphx
diff options
context:
space:
mode:
authorAnkur Dave <ankurdave@gmail.com>2014-01-11 00:08:15 -0800
committerAnkur Dave <ankurdave@gmail.com>2014-01-11 00:08:36 -0800
commit34496d6a9fd18ba708b66dcc318c7568608e963f (patch)
treef778e022af1e8fa64385abcef5286a348068d1d9 /graphx
parentb8a44f12a58c336d3d296382dd53467c9538d1e9 (diff)
downloadspark-34496d6a9fd18ba708b66dcc318c7568608e963f.tar.gz
spark-34496d6a9fd18ba708b66dcc318c7568608e963f.tar.bz2
spark-34496d6a9fd18ba708b66dcc318c7568608e963f.zip
Move Analytics to algorithms and fix doc
Diffstat (limited to 'graphx')
-rw-r--r--graphx/src/main/scala/org/apache/spark/graphx/algorithms/Analytics.scala (renamed from graphx/src/main/scala/org/apache/spark/graphx/Analytics.scala)12
1 files changed, 3 insertions, 9 deletions
diff --git a/graphx/src/main/scala/org/apache/spark/graphx/Analytics.scala b/graphx/src/main/scala/org/apache/spark/graphx/algorithms/Analytics.scala
index 1359b92c6b..f09685402a 100644
--- a/graphx/src/main/scala/org/apache/spark/graphx/Analytics.scala
+++ b/graphx/src/main/scala/org/apache/spark/graphx/algorithms/Analytics.scala
@@ -1,16 +1,10 @@
-package org.apache.spark.graphx
+package org.apache.spark.graphx.algorithms
import org.apache.spark._
-import org.apache.spark.graphx.algorithms._
-
+import org.apache.spark.graphx._
/**
- * The Analytics object contains a collection of basic graph analytics
- * algorithms that operate largely on the graph structure.
- *
- * In addition the Analytics object contains a driver `main` which can
- * be used to apply the various functions to graphs in standard
- * formats.
+ * Driver program for running graph algorithms.
*/
object Analytics extends Logging {