Fixed missing case from a couple commits ago
parent
db1948e058
commit
6769850689
|
@ -168,6 +168,8 @@ bool choleskyPartial(Matrix& ABC, size_t nFrontal) {
|
||||||
int exp1;
|
int exp1;
|
||||||
(void)frexp(ABC(0,0), &exp1);
|
(void)frexp(ABC(0,0), &exp1);
|
||||||
ok = (exp1 > -underconstrainedExponentDifference);
|
ok = (exp1 > -underconstrainedExponentDifference);
|
||||||
|
} else {
|
||||||
|
ok = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ok = false;
|
ok = false;
|
||||||
|
|
Loading…
Reference in New Issue