aboutsummaryrefslogtreecommitdiff
path: root/mllib/src/main
diff options
context:
space:
mode:
authorXiangrui Meng <meng@databricks.com>2015-08-12 17:04:31 -0700
committerXiangrui Meng <meng@databricks.com>2015-08-12 17:04:31 -0700
commite6aef55766d0e2a48e0f9cb6eda0e31a71b962f3 (patch)
tree8eba7970535d243a9515a17c18218be98e55020c /mllib/src/main
parent6e409bc1357f49de2efdfc4226d074b943fb1153 (diff)
downloadspark-e6aef55766d0e2a48e0f9cb6eda0e31a71b962f3.tar.gz
spark-e6aef55766d0e2a48e0f9cb6eda0e31a71b962f3.tar.bz2
spark-e6aef55766d0e2a48e0f9cb6eda0e31a71b962f3.zip
[SPARK-9912] [MLLIB] QRDecomposition should use QType and RType for type names instead of UType and VType
hhbyyh Author: Xiangrui Meng <meng@databricks.com> Closes #8140 from mengxr/SPARK-9912.
Diffstat (limited to 'mllib/src/main')
-rw-r--r--mllib/src/main/scala/org/apache/spark/mllib/linalg/SingularValueDecomposition.scala2
1 files changed, 1 insertions, 1 deletions
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 b416d50a56..cff5dbeee3 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)