Пример #1
0
 /// <summary>
 /// Adds a new population 'twig'
 /// </summary>
 /// <param name="pop">Population that will be copied and stored</param>
 public void AddTwig(Population pop, int pCount)
 {
     Twigs.Add(new Population(pop)); // copy of the current pop
     performanceCount = pCount;
     PerformAnalytics();
 }
Пример #2
0
 /// <summary>
 /// Adds a new population 'twig'
 /// </summary>
 /// <param name="pop">Population that will be copied and stored</param>
 public void AddTwig(Population pop)
 {
     Twigs.Add(new Population(pop)); // copy of the current pop
 }