120 likes | 214 Vues
This meeting outline delves into the concept of uniform asexual selection in population dynamics, touching on code implementation and its impact on reproduction rates. Understanding SOP status and exploring implications through data plots are emphasized. Future work includes conference paper writing, simulations variation, problem-solving, ancestral perspectives, and GeneSigma analysis.
E N D
Oct 18 Meeting John Nicholson
Outline • Introduction/Status/Overview • Uniform Asexual Selection • What was going on with SOP
Introduction/Status/Overview • What do I have in common with a politician? • We have been looking at “uniform” asexual selection recently. The old stuff from April was not uniform, but the new stuff from the last two/three months is uniform.
Outline • Introduction/Status/Overview • Uniform Asexual Selection • What was going on with SOP
Uniform Asexual Selection • I added this block of code some time over the summer: for (int i=0; i<m_PopulationSize; i++) { for (int j=0; j<numberOfChildrenToCreatePerIndividual; j++) { newIndividuals.add(deterministicallyChooseIndividual(i).reproduceAsexually()); numberOfChildrenCreatedSoFar++; } } • This block is part of the asexual reproduction routine, and uniformly spreads selection among the population as much as possible. • The variablenumberOfChildrenToCreatePerIndividual is the integer part of the asexual reproduction rate. • This block of code has now been parameterized.
Outline • Introduction/Status/Overview • Uniform Asexual Selection • What was going on with SOP
What was going on with SOP • The short version is that uniform asexual reproduction was going on, where every individual had a child. • I still have some pretty plots, so here they are:
Future Work • Start writing conference paper(s). • Uniform reproduction…this time run simulations without uniform reproduction, and see how results change. • More problems • Ancestral views • GeneSigma analysis