Minor: reformat

This commit is contained in:
Iaroslav Postovalov 2021-01-20 16:51:36 +07:00
parent f3c602115a
commit 72832bae10
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

View File

@ -16,11 +16,8 @@ import kotlin.reflect.cast
* @property origin the underlying [SimpleMatrix].
* @author Iaroslav Postovalov
*/
public class EjmlMatrix(
public val origin: SimpleMatrix,
) : Matrix<Double> {
public class EjmlMatrix(public val origin: SimpleMatrix) : Matrix<Double> {
public override val rowNum: Int get() = origin.numRows()
public override val colNum: Int get() = origin.numCols()
@UnstableKMathAPI