Minor: add newline

This commit is contained in:
Iaroslav Postovalov 2021-01-19 01:10:16 +07:00
parent 53db4489f8
commit 348f114bb6
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

View File

@ -13,6 +13,7 @@ public class CMMatrix(public val origin: RealMatrix, features: Set<MatrixFeature
public override val features: Set<MatrixFeature> = features union hashSetOf( public override val features: Set<MatrixFeature> = features union hashSetOf(
*if (origin is DiagonalMatrix) arrayOf(DiagonalFeature) else emptyArray(), *if (origin is DiagonalMatrix) arrayOf(DiagonalFeature) else emptyArray(),
object : DeterminantFeature<Double>, LupDecompositionFeature<Double> { object : DeterminantFeature<Double>, LupDecompositionFeature<Double> {
private val lup by lazy { LUDecomposition(origin) } private val lup by lazy { LUDecomposition(origin) }
override val determinant: Double by lazy { lup.determinant } override val determinant: Double by lazy { lup.determinant }