aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/cell_helper.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/cell_helper.hpp')
-rw-r--r--src/interfaces/cell_helper.hpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/interfaces/cell_helper.hpp b/src/interfaces/cell_helper.hpp
index 141d905..d814aa7 100644
--- a/src/interfaces/cell_helper.hpp
+++ b/src/interfaces/cell_helper.hpp
@@ -8,6 +8,7 @@
#include <list>
#include <memory>
+#include <vector>
// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
class ICellHelper
@@ -22,14 +23,8 @@ public:
get_birth_cell_positions(const std::list<Vector2> &cell_positions) const noexcept
-> std::list<Vector2> = 0;
- /*
- [[nodiscard]] virtual auto
- find_neighbour_cells(const Vector2 &cell_pos) const noexcept
- -> std::list<Vector2> = 0;
- */
-
[[nodiscard]] virtual auto find_neighbours(const Vector2 &cell_pos) const noexcept
- -> std::list<Vector2> = 0;
+ -> std::vector<Vector2> = 0;
};
template <typename MatrixElement>