GCC Code Coverage Report


Directory: ./
File: tasks/chernykh_s_yadro_gaussa_horizontal/seq/include/ops_seq.hpp
Date: 2026-02-02 01:14:38
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 0 0 -%
Branches: 0 4 0.0%

Line Branch Exec Source
1 #pragma once
2
3 #include "chernykh_s_yadro_gaussa_horizontal/common/include/common.hpp"
4 #include "task/include/task.hpp" // мб не надо?
5
6 namespace chernykh_s_yadro_gaussa_horizontal {
7
8
0/4
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
45 class ChernykhSYadroGaussaHorizontalSEQ : public BaseTask {
9 public:
10 static constexpr ppc::task::TypeOfTask GetStaticTypeOfTask() {
11 return ppc::task::TypeOfTask::kSEQ;
12 }
13 explicit ChernykhSYadroGaussaHorizontalSEQ(const InType &in);
14 static int GetGaussianWeight(int ki, int kj);
15
16 private:
17 bool ValidationImpl() override;
18 bool PreProcessingImpl() override;
19 bool RunImpl() override;
20 bool PostProcessingImpl() override;
21 };
22
23 } // namespace chernykh_s_yadro_gaussa_horizontal
24