Repository: spark
Updated Branches:
  refs/heads/master 6e409bc13 -> e6aef5576


[SPARK-9912] [MLLIB] QRDecomposition should use QType and RType for type names 
instead of UType and VType

hhbyyh

Author: Xiangrui Meng <m...@databricks.com>

Closes #8140 from mengxr/SPARK-9912.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/e6aef557
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/e6aef557
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/e6aef557

Branch: refs/heads/master
Commit: e6aef55766d0e2a48e0f9cb6eda0e31a71b962f3
Parents: 6e409bc
Author: Xiangrui Meng <m...@databricks.com>
Authored: Wed Aug 12 17:04:31 2015 -0700
Committer: Xiangrui Meng <m...@databricks.com>
Committed: Wed Aug 12 17:04:31 2015 -0700

----------------------------------------------------------------------
 .../org/apache/spark/mllib/linalg/SingularValueDecomposition.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/e6aef557/mllib/src/main/scala/org/apache/spark/mllib/linalg/SingularValueDecomposition.scala
----------------------------------------------------------------------
diff --git 
a/mllib/src/main/scala/org/apache/spark/mllib/linalg/SingularValueDecomposition.scala
 
b/mllib/src/main/scala/org/apache/spark/mllib/linalg/SingularValueDecomposition.scala
index b416d50..cff5dbe 100644
--- 
a/mllib/src/main/scala/org/apache/spark/mllib/linalg/SingularValueDecomposition.scala
+++ 
b/mllib/src/main/scala/org/apache/spark/mllib/linalg/SingularValueDecomposition.scala
@@ -31,5 +31,5 @@ case class SingularValueDecomposition[UType, VType](U: UType, 
s: Vector, V: VTyp
  * Represents QR factors.
  */
 @Experimental
-case class QRDecomposition[UType, VType](Q: UType, R: VType)
+case class QRDecomposition[QType, RType](Q: QType, R: RType)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to