Dev #194

Merged
altavir merged 266 commits from dev into master 2021-01-20 17:32:32 +03:00
Showing only changes of commit 5910c587e2 - Show all commits

View File

@ -39,13 +39,13 @@ public class EjmlMatrix(public val origin: SimpleMatrix, features: Set<MatrixFea
) )
} }
override val l: FeaturedMatrix<Double> public override val l: FeaturedMatrix<Double>
get() = lup.second get() = lup.second
override val u: FeaturedMatrix<Double> public override val u: FeaturedMatrix<Double>
get() = lup.third get() = lup.third
override val p: FeaturedMatrix<Double> public override val p: FeaturedMatrix<Double>
get() = lup.first get() = lup.first
} }
) union features.orEmpty() ) union features.orEmpty()