Добавил префикс ко всем атрибутам класса

This commit is contained in:
2024-12-05 14:11:44 +03:00
parent faa84e1258
commit 3d8453bdf7
2 changed files with 12 additions and 12 deletions

View File

@@ -12,11 +12,11 @@ enum BoundaryCondition {
class CellularAutomaton
{
static const unsigned int functionValues = 25 * 11 * 2003 * 18 * 11;
static const unsigned int m_functionValues = 25 * 11 * 2003 * 18 * 11;
int m_fieldWidth, m_fieldHeight;
std::vector<std::vector<int>> field;
std::vector<std::vector<int>> fieldNextState;
std::vector<std::vector<int>> m_field;
std::vector<std::vector<int>> m_fieldNextState;
BoundaryCondition m_boundaryCondition;
void initializeRandom();