| 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 kondrashova_v_ring_topology { | ||
| 10 | |||
| 11 |
1/2✓ Branch 1 taken 60 times.
✗ Branch 2 not taken.
|
240 | struct Data { |
| 12 | int source = 0; | ||
| 13 | int recipient = 0; | ||
| 14 | std::vector<int> data; | ||
| 15 | }; | ||
| 16 | |||
| 17 | using InType = Data; | ||
| 18 | using OutType = std::vector<int>; | ||
| 19 | |||
| 20 | using TestType = std::tuple<int, int, std::vector<int>, std::string>; | ||
| 21 | |||
| 22 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 23 | |||
| 24 | } // namespace kondrashova_v_ring_topology | ||
| 25 |