GCC Code Coverage Report


Directory: ./
File: tasks/ilin_a_gaussian_method_horizontal_band_scheme/common/include/common.hpp
Date: 2026-01-27 01:59:34
Exec Total Coverage
Lines: 0 1 0.0%
Functions: 0 0 -%
Branches: 0 2 0.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 ilin_a_gaussian_method_horizontal_band_scheme {
10
11 using InType = std::vector<double>;
12 using OutType = std::vector<double>;
13 using TestType = std::tuple<int, std::string>;
14 using BaseTask = ppc::task::Task<InType, OutType>;
15
16 struct MatrixData {
17 std::vector<double> matrix;
18 std::vector<double> vector;
19 int size = 0;
20 int band_width = 0;
21 };
22
23 } // namespace ilin_a_gaussian_method_horizontal_band_scheme
24