FOUND Coverage Report


src/
File: calibrate/calibrate.cpp
Date: 2025-11-20 21:57:26
Lines:
2/2
100.0%
Functions:
1/1
100.0%
Branches:
4/4
100.0%

Line Branch Exec Source
1 #include "calibrate/calibrate.hpp"
2
3 #include <utility>
4
5 #include "common/spatial/attitude-utils.hpp"
6
7 namespace found {
8
9 28 Quaternion LOSTCalibrationAlgorithm::Run(const std::pair<EulerAngles, EulerAngles> &orientations) {
10
4/4
✓ Branch 3 taken 28 times.
✓ Branch 6 taken 28 times.
✓ Branch 10 taken 28 times.
✓ Branch 13 taken 28 times.
56 return SphericalToQuaternion(orientations.first) * SphericalToQuaternion(orientations.second).Conjugate();
11 }
12
13 } // namespace found
14