GCC Code Coverage Report


Directory: ./
File: tasks/titaev_m_metod_pryamougolnikov/common/include/common.hpp
Date: 2026-01-10 02:40:41
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 0 0 -%
Branches: 2 4 50.0%

Line Branch Exec Source
1 #pragma once
2
3 #include <string>
4 #include <tuple>
5 #include <vector>
6
7 #include "task/include/task.hpp"
8
9 namespace titaev_m_metod_pryamougolnikov {
10
11
2/4
✓ Branch 1 taken 30 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 30 times.
✗ Branch 5 not taken.
60 struct RectangleInput {
12 std::vector<double> left_bounds;
13 std::vector<double> right_bounds;
14 int partitions{};
15 };
16
17 using InType = RectangleInput;
18 using OutType = double;
19 using TestType = std::tuple<int, std::string>;
20 using BaseTask = ppc::task::Task<InType, OutType>;
21
22 } // namespace titaev_m_metod_pryamougolnikov
23