com.eignex.koblas/dense/CholeskyPolicy CholeskyPolicy sealed interface CholeskyPolicy(source)What F64Decompositions.cholesky does when the matrix turns out not to be positive-definite.InheritorsStrictRegularize Types Regularize Link copied to clipboard data class Regularize(val minimumPivot: Double = 1.0E-10) : CholeskyPolicyContinue past a non-positive pivot, treating it as minimumPivot instead. The result is a genuine Cholesky factor of a nearby matrix, not of the input. Strict Link copied to clipboard data object Strict : CholeskyPolicyThrow at the first non-positive pivot, naming the position and the value.