GCC Code Coverage Report


Directory: ./
File: tasks/nikolaev_d_gather/seq/include/ops_seq.hpp
Date: 2026-01-10 02:40:41
Exec Total Coverage
Lines: 0 1 0.0%
Functions: 0 0 -%
Branches: 0 4 0.0%

Line Branch Exec Source
1 #pragma once
2
3 #include "nikolaev_d_gather/common/include/common.hpp"
4 #include "task/include/task.hpp"
5
6 namespace nikolaev_d_gather {
7
8 class NikolaevDGatherSEQ : public BaseTask {
9 public:
10 static constexpr ppc::task::TypeOfTask GetStaticTypeOfTask() {
11 return ppc::task::TypeOfTask::kSEQ;
12 }
13 explicit NikolaevDGatherSEQ(const InType &in);
14
15 private:
16 bool ValidationImpl() override;
17 bool PreProcessingImpl() override;
18 bool RunImpl() override;
19 bool PostProcessingImpl() override;
20 };
21
22 } // namespace nikolaev_d_gather
23