| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include <tuple> | ||
| 4 | #include <vector> | ||
| 5 | |||
| 6 | #include "task/include/task.hpp" | ||
| 7 | |||
| 8 | namespace kopilov_d_ring_2 { | ||
| 9 | |||
| 10 |
1/2✓ Branch 1 taken 40 times.
✗ Branch 2 not taken.
|
120 | struct Input { |
| 11 | std::vector<int> data; | ||
| 12 | }; | ||
| 13 | |||
| 14 |
1/8✓ Branch 0 taken 40 times.
✗ Branch 1 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
|
40 | struct Output { |
| 15 | std::vector<int> data; | ||
| 16 | }; | ||
| 17 | |||
| 18 | using InType = Input; | ||
| 19 | using OutType = Output; | ||
| 20 | |||
| 21 | using TestType = std::tuple<std::vector<int>>; | ||
| 22 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 23 | |||
| 24 | } // namespace kopilov_d_ring_2 | ||
| 25 |