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