| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | * Copyright 2024 INRIA | ||
| 3 | */ | ||
| 4 | |||
| 5 | #include "eigenpy/decompositions/LDLT.hpp" | ||
| 6 | |||
| 7 | namespace eigenpy { | ||
| 8 | 12 | void exposeLDLTSolver() { | |
| 9 | using namespace Eigen; | ||
| 10 |
2/4✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 12 times.
✗ Branch 5 not taken.
|
12 | LDLTSolverVisitor<MatrixXd>::expose("LDLT"); |
| 11 | 12 | } | |
| 12 | } // namespace eigenpy | ||
| 13 |