| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #include "chetverikova_e_lattice_torus/seq/include/ops_seq.hpp" | ||
| 2 | |||
| 3 | #include <tuple> | ||
| 4 | #include <vector> | ||
| 5 | |||
| 6 | #include "chetverikova_e_lattice_torus/common/include/common.hpp" | ||
| 7 | |||
| 8 | namespace chetverikova_e_lattice_torus { | ||
| 9 | |||
| 10 | ✗ | ChetverikovaELatticeTorusSEQ::ChetverikovaELatticeTorusSEQ(const InType &in) { | |
| 11 | SetTypeOfTask(GetStaticTypeOfTask()); | ||
| 12 | GetInput() = in; | ||
| 13 | ✗ | GetOutput() = std::make_tuple(std::vector<double>{}, std::vector<int>{}); | |
| 14 | ✗ | } | |
| 15 | |||
| 16 | ✗ | bool ChetverikovaELatticeTorusSEQ::ValidationImpl() { | |
| 17 | ✗ | return true; | |
| 18 | } | ||
| 19 | |||
| 20 | ✗ | bool ChetverikovaELatticeTorusSEQ::PreProcessingImpl() { | |
| 21 | ✗ | return true; | |
| 22 | } | ||
| 23 | |||
| 24 | ✗ | bool ChetverikovaELatticeTorusSEQ::RunImpl() { | |
| 25 | ✗ | return true; | |
| 26 | } | ||
| 27 | |||
| 28 | ✗ | bool ChetverikovaELatticeTorusSEQ::PostProcessingImpl() { | |
| 29 | ✗ | return true; | |
| 30 | } | ||
| 31 | |||
| 32 | } // namespace chetverikova_e_lattice_torus | ||
| 33 |