Skip to content
Snippets Groups Projects
Commit e6aef557 authored by Xiangrui Meng's avatar Xiangrui Meng
Browse files

[SPARK-9912] [MLLIB] QRDecomposition should use QType and RType for type names...

[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.
parent 6e409bc1
No related branches found
No related tags found
No related merge requests found
......@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment