GCC Code Coverage Report


Directory: ./
File: tasks/ovsyannikov_n_star/seq/src/ops_seq.cpp
Date: 2026-01-10 02:40:41
Exec Total Coverage
Lines: 13 13 100.0%
Functions: 5 5 100.0%
Branches: 0 0 -%

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