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