Exemple #1
0
 /// <summary>
 ///		Create a read-only rabies model datasource from a passed cells datasource with
 ///		NYears years with the passed winter bias.
 /// </summary>
 /// <param name="Rnd">The random number generator used by the generated background</param>
 /// <param name="TheCells">The cells datasource.</param>
 /// <param name="NYears">The number of years to create.</param>
 /// <param name="WinterBias">The winter type bias for those years.</param>
 public cRaccoonModelDataSource(cUniformRandom Rnd, cCellsDataSource TheCells, int NYears, enumWinterType WinterBias)
     : base(Rnd, TheCells, NYears, WinterBias)
 {
 }
Exemple #2
0
 /// <summary>
 ///		Create a read-only rabies model datasource from a passed cells datasource,
 ///		a passed wintertype list and a single animal.
 /// </summary>
 /// <param name="Rnd">The random number generator used by the generated background</param>
 /// <param name="TheCells">The cells datasource.</param>
 /// <param name="TheWinters">The list of winter types.</param>
 public cRaccoonModelDataSource(cUniformRandom Rnd, cCellsDataSource TheCells, cWinterTypeList TheWinters)
     : base(Rnd, TheCells, TheWinters)
 {
 }
 /// <summary>
 ///		Create a read-only rabies model datasource from a passed cells datasource with
 ///		NYears years with the passed winter bias.
 /// </summary>
 /// <param name="Rnd">The random number generator used by the generated background</param>
 /// <param name="TheCells">The cells datasource.</param>
 /// <param name="NYears">The number of years to create.</param>
 /// <param name="WinterBias">The winter type bias for those years.</param>
 ///	<param name="MaleMarkers">
 ///	    The markers for the seed male animal
 /// </param>
 /// <param name="FemaleMarkers">
 ///     The markers for the seed female animal
 /// </param>
 public cFoxModelDataSource(cUniformRandom Rnd, cCellsDataSource TheCells, int NYears, enumWinterType WinterBias,
                            string MaleMarkers, string FemaleMarkers)
     : base(Rnd, TheCells, NYears, WinterBias, MaleMarkers, FemaleMarkers)
 {
 }
Exemple #4
0
 /// <summary>
 ///		Create a read-only rabies model datasource combining a passed cells datasource
 ///		and a passed animals datasource.
 /// </summary>
 /// <param name="Rnd">The random number generator used by the generated background</param>
 /// <param name="TheCells">The cells datasource.</param>
 /// <param name="TheAnimals">The animals datasource.</param>
 public cRaccoonModelDataSource(cUniformRandom Rnd, cCellsDataSource TheCells, cAnimalsDataSource TheAnimals)
     : base(Rnd, TheCells, TheAnimals)
 {
 }
 /// <summary>
 ///		Create a read-only rabies model datasource from a passed cells datasource,
 ///		a passed wintertype list and a single animal.
 /// </summary>
 /// <param name="Rnd">The random number generator used by the generated background</param>
 /// <param name="TheCells">The cells datasource.</param>
 /// <param name="TheWinters">The list of winter types.</param>
 ///	<param name="MaleMarkers">
 ///	    The markers for the seed male animal
 /// </param>
 /// <param name="FemaleMarkers">
 ///     The markers for the seed female animal
 /// </param>
 public cFoxModelDataSource(cUniformRandom Rnd, cCellsDataSource TheCells, cWinterTypeList TheWinters,
                            string MaleMarkers, string FemaleMarkers)
     : base(Rnd, TheCells, TheWinters, MaleMarkers, FemaleMarkers)
 {
 }