| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #include "chernykh_s_hypercube/seq/include/ops_seq.hpp" | ||
| 2 | |||
| 3 | #include "chernykh_s_hypercube/common/include/common.hpp" | ||
| 4 | |||
| 5 | namespace chernykh_s_hypercube { | ||
| 6 | |||
| 7 | ✗ | ChernykhSHypercubeSEQ::ChernykhSHypercubeSEQ(const InType &in) { | |
| 8 | SetTypeOfTask(GetStaticTypeOfTask()); | ||
| 9 | ✗ | GetInput() = InType(in); | |
| 10 | ✗ | GetOutput() = 0; | |
| 11 | ✗ | } | |
| 12 | |||
| 13 | ✗ | bool ChernykhSHypercubeSEQ::ValidationImpl() { | |
| 14 | ✗ | return !GetInput().empty(); | |
| 15 | } | ||
| 16 | |||
| 17 | ✗ | bool ChernykhSHypercubeSEQ::PreProcessingImpl() { | |
| 18 | ✗ | return true; | |
| 19 | } | ||
| 20 | |||
| 21 | ✗ | bool ChernykhSHypercubeSEQ::RunImpl() { | |
| 22 | ✗ | return true; | |
| 23 | } | ||
| 24 | |||
| 25 | ✗ | bool ChernykhSHypercubeSEQ::PostProcessingImpl() { | |
| 26 | ✗ | return true; | |
| 27 | } | ||
| 28 | |||
| 29 | } // namespace chernykh_s_hypercube | ||
| 30 |