GCC Code Coverage Report


Directory: ./
File: tasks/shemetov_d_increasing_contrast/mpi/include/ops_mpi.hpp
Date: 2026-01-27 01:59:34
Exec Total Coverage
Lines: 0 1 0.0%
Functions: 0 0 -%
Branches: 0 8 0.0%

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