/// <summary>
 /// Adds a stack to the current generation of stacks
 /// </summary>
 private void AddStackToGeneration(CellStack stack)
 {
     //add stack to current generation of stacks
     _currentGenerationData[_curCount] = stack.CopyData();
 }