GCC Code Coverage Report


Directory: ./
File: tasks/mityaeva_radix/seq/src/ops_seq.cpp
Date: 2026-04-02 17:12:27
Exec Total Coverage
Lines: 13 13 100.0%
Functions: 5 5 100.0%
Branches: 2 4 50.0%

Line Branch Exec Source
1 #include "mityaeva_radix/seq/include/ops_seq.hpp"
2
3 #include "mityaeva_radix/common/include/common.hpp"
4 #include "mityaeva_radix/seq/include/sorter_seq.hpp"
5
6 namespace mityaeva_radix {
7
8
1/2
✓ Branch 1 taken 96 times.
✗ Branch 2 not taken.
96 MityaevaRadixSeq::MityaevaRadixSeq(const InType &in) {
9 SetTypeOfTask(GetStaticTypeOfTask());
10
1/2
✓ Branch 1 taken 96 times.
✗ Branch 2 not taken.
96 GetInput() = in;
11 GetOutput() = {};
12 96 }
13
14 96 bool MityaevaRadixSeq::ValidationImpl() {
15 96 return !GetInput().empty();
16 }
17
18 96 bool MityaevaRadixSeq::PreProcessingImpl() {
19 96 return true;
20 }
21
22 96 bool MityaevaRadixSeq::RunImpl() {
23 auto &array = GetInput();
24 96 SorterSeq::LSDSortDouble(array);
25 96 GetOutput() = array;
26 96 return true;
27 }
28
29 96 bool MityaevaRadixSeq::PostProcessingImpl() {
30 96 return true;
31 }
32
33 } // namespace mityaeva_radix
34