GCC Code Coverage Report


Directory: ./
File: tasks/chernykh_s_hypercube/seq/src/ops_seq.cpp
Date: 2026-01-09 01:27:18
Exec Total Coverage
Lines: 0 12 0.0%
Functions: 0 5 0.0%
Branches: 0 4 0.0%

Line Branch Exec Source
1 #include "chernykh_s_hypercube/seq/include/ops_seq.hpp"
2
3 #include "chernykh_s_hypercube/common/include/common.hpp"
4
5 namespace chernykh_s_hypercube {
6
7 ChernykhSHypercubeSEQ::ChernykhSHypercubeSEQ(const InType &in) {
8 SetTypeOfTask(GetStaticTypeOfTask());
9 GetInput() = InType(in);
10 GetOutput() = 0;
11 }
12
13 bool ChernykhSHypercubeSEQ::ValidationImpl() {
14 return !GetInput().empty();
15 }
16
17 bool ChernykhSHypercubeSEQ::PreProcessingImpl() {
18 return true;
19 }
20
21 bool ChernykhSHypercubeSEQ::RunImpl() {
22 return true;
23 }
24
25 bool ChernykhSHypercubeSEQ::PostProcessingImpl() {
26 return true;
27 }
28
29 } // namespace chernykh_s_hypercube
30