| 127 | /** test matrix against semi-definitiveness */ |
| 128 | template <int Dim> |
| 129 | bool IsPositiveSemidefinite(MatrixStatic<Dim, Dim> Mat) |
| 130 | { |
| 131 | Eigen::LDLT<MatrixStatic<Dim, Dim>> CholeskyOfSqrtInfo(Mat); |
| 132 | return (CholeskyOfSqrtInfo.info() != Eigen::NumericalIssue); |
| 133 | } |
| 134 | |
| 135 | void RemoveColumn (Matrix& Matrix, int ColToRemove); |
| 136 |
nothing calls this directly
no outgoing calls
no test coverage detected