| 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 smyshlaev_a_sle_cg_seq { | ||
| 10 | |||
| 11 | using CGVector = std::vector<double>; | ||
| 12 | using CGMatrix = std::vector<CGVector>; | ||
| 13 | |||
| 14 |
2/4✓ Branch 1 taken 80 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 80 times.
✗ Branch 5 not taken.
|
80 | struct InputType { |
| 15 | CGMatrix A; | ||
| 16 | CGVector b; | ||
| 17 | }; | ||
| 18 | |||
| 19 | using InType = InputType; | ||
| 20 | using OutType = CGVector; | ||
| 21 | using TestType = std::tuple<int, std::string>; | ||
| 22 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 23 | |||
| 24 | } // namespace smyshlaev_a_sle_cg_seq | ||
| 25 |