| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include <tuple> | ||
| 4 | #include <vector> | ||
| 5 | |||
| 6 | #include "task/include/task.hpp" | ||
| 7 | |||
| 8 | namespace ilin_a_algorithm_graham { | ||
| 9 | |||
| 10 | struct Point { | ||
| 11 | double x; | ||
| 12 | double y; | ||
| 13 | }; | ||
| 14 | |||
| 15 |
3/6✓ Branch 1 taken 192 times.
✗ Branch 2 not taken.
✓ Branch 6 taken 24 times.
✗ Branch 7 not taken.
✓ Branch 9 taken 804 times.
✗ Branch 10 not taken.
|
1068 | struct InputData { |
| 16 | std::vector<Point> points; | ||
| 17 | }; | ||
| 18 | |||
| 19 | using InType = InputData; | ||
| 20 | using OutType = std::vector<Point>; | ||
| 21 | using TestType = std::tuple<int, InputData, OutType>; | ||
| 22 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 23 | |||
| 24 | } // namespace ilin_a_algorithm_graham | ||
| 25 |