| 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 bortsova_a_max_elem_vector { | ||
| 10 | |||
| 11 |
1/2✓ Branch 1 taken 428 times.
✗ Branch 2 not taken.
|
1284 | struct InType { |
| 12 | std::vector<int> data; | ||
| 13 | }; | ||
| 14 | |||
| 15 | using OutType = int; | ||
| 16 | using TestType = std::tuple<std::vector<int>, std::string>; | ||
| 17 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 18 | |||
| 19 | } // namespace bortsova_a_max_elem_vector | ||
| 20 |