GCC Code Coverage Report


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

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