Repository: spark Updated Branches: refs/heads/branch-1.5 2f8793b5f -> 31b7fdc06
[SPARK-9912] [MLLIB] QRDecomposition should use QType and RType for type names instead of UType and VType hhbyyh Author: Xiangrui Meng <[email protected]> Closes #8140 from mengxr/SPARK-9912. (cherry picked from commit e6aef55766d0e2a48e0f9cb6eda0e31a71b962f3) Signed-off-by: Xiangrui Meng <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/31b7fdc0 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/31b7fdc0 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/31b7fdc0 Branch: refs/heads/branch-1.5 Commit: 31b7fdc06fc21fa38ac4530f9c70dd27b3b71578 Parents: 2f8793b Author: Xiangrui Meng <[email protected]> Authored: Wed Aug 12 17:04:31 2015 -0700 Committer: Xiangrui Meng <[email protected]> Committed: Wed Aug 12 17:04:37 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/31b7fdc0/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: [email protected] For additional commands, e-mail: [email protected]
