| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include <tuple> | ||
| 4 | #include <vector> | ||
| 5 | |||
| 6 | #include "task/include/task.hpp" | ||
| 7 | |||
| 8 | namespace pankov_matrix_vector { | ||
| 9 | |||
| 10 |
2/4✓ Branch 2 taken 60 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 60 times.
✗ Branch 6 not taken.
|
1464 | struct MatrixVectorInput { |
| 11 | std::vector<std::vector<double>> matrix; | ||
| 12 | std::vector<double> vector; | ||
| 13 | }; | ||
| 14 | |||
| 15 | using InType = MatrixVectorInput; | ||
| 16 | using OutType = std::vector<double>; | ||
| 17 | using TestType = std::tuple<InType, OutType>; | ||
| 18 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 19 | |||
| 20 | } // namespace pankov_matrix_vector | ||
| 21 |