| 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 |