Directory: | ./ |
---|---|
File: | src/decompositions/ldlt-solver.cpp |
Date: | 2025-05-03 01:11:23 |
Exec | Total | Coverage | |
---|---|---|---|
Lines: | 3 | 3 | 100.0% |
Branches: | 2 | 4 | 50.0% |
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 2 taken 12 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 12 times.
✗ Branch 6 not taken.
|
12 | LDLTSolverVisitor<MatrixXd>::expose("LDLT"); |
11 | 12 | } | |
12 | } // namespace eigenpy | ||
13 |