GCC Code Coverage Report


Directory: ./
File: tasks/lazareva_a_matrix_mult_strassen/common/include/common.hpp
Date: 2026-04-02 17:12:27
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 0 0 -%
Branches: 3 6 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 lazareva_a_matrix_mult_strassen {
10
11
3/6
✓ Branch 1 taken 72 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 72 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 72 times.
✗ Branch 8 not taken.
72 struct MatrixInput {
12 std::vector<double> a;
13 std::vector<double> b;
14 int n{};
15 };
16
17 using InType = MatrixInput;
18 using OutType = std::vector<double>;
19 using TestType = std::tuple<int, std::string>;
20 using BaseTask = ppc::task::Task<InType, OutType>;
21
22 } // namespace lazareva_a_matrix_mult_strassen
23