| 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 alekseev_a_custom_reduce { | ||
| 10 | |||
| 11 |
3/5✓ Branch 1 taken 166 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 212 times.
✓ Branch 5 taken 46 times.
✗ Branch 6 not taken.
|
636 | struct InType { |
| 12 | std::vector<double> data; | ||
| 13 | int root; | ||
| 14 | }; | ||
| 15 | |||
| 16 | using OutType = double; | ||
| 17 | using TestType = std::tuple<int, std::string>; | ||
| 18 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 19 | |||
| 20 | } // namespace alekseev_a_custom_reduce | ||
| 21 |