Encog.ML.Genetic.MateWorker.MateWorker C# (CSharp) Method

MateWorker() public method

public MateWorker ( IGenome theMother, IGenome theFather, IGenome theChild1, IGenome theChild2 ) : Encog.ML.Genetic.Genome
theMother IGenome The mother.
theFather IGenome The father.
theChild1 IGenome The first child.
theChild2 IGenome The second child.
return Encog.ML.Genetic.Genome
        public MateWorker(IGenome theMother, IGenome theFather,
                          IGenome theChild1, IGenome theChild2)
        {
            _mother = theMother;
            _father = theFather;
            _child1 = theChild1;
            _child2 = theChild2;
        }