//===============================================================================
//  FEED-BACKS AMONG INBREEDING, INBREEDING DEPRESSION IN SPERM TRAITS AND SPERM
//  COMPETITION CAN DRIVE EVOLUTION OF COSTLY POLYANDRY.
//  Bocedi, G. & Reid, J.M. (2017).	Evolution.
//
//  Population class: cpp file. 4th September 2017.
//===============================================================================

#include "Population.h"


Population::Population(int xx, int yy)
{
	x = xx; y = yy;
	Nind = 0; 
	Noffs = 0;
	Nf = 0; 
	Nm = 0; 
	Foffs = 0;
	Moffs = 0;
	W = 0.0;
}
//--------------------------------------------------------------------
Population::~Population()
{
}
//--------------------------------------------------------------------
void Population::deletePop(void){
	females.clear(); 
	males.clear(); 
	Jfemales.clear(); 
	Jmales.clear();
}