Добавил префикс ко всем атрибутам класса
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user