GCC Code Coverage Report


Directory: ./
File: tasks/maslova_u_row_matr_vec_mult/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 <cstddef>
4 #include <string>
5 #include <tuple>
6 #include <utility>
7 #include <vector>
8
9 #include "task/include/task.hpp"
10
11 namespace maslova_u_row_matr_vec_mult {
12
2/4
✓ Branch 2 taken 854 times.
✗ Branch 3 not taken.
✓ Branch 8 taken 3668 times.
✗ Branch 9 not taken.
4662 struct Matrix {
13 std::vector<double> data;
14 size_t rows = 0;
15 size_t cols = 0;
16 };
17
18 using InType = std::pair<Matrix, std::vector<double>>;
19 using OutType = std::vector<double>;
20 using TestType = std::tuple<InType, OutType, std::string>;
21 using BaseTask = ppc::task::Task<InType, OutType>;
22
23 } // namespace maslova_u_row_matr_vec_mult
24