UNPKG

@syntest/search

Version:

The common core of the SynTest Framework

21 lines 566 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Procreation = void 0; class Procreation { constructor(crossover, mutateFunction, sampler) { this._crossover = crossover; this._sampler = sampler; this._mutateFunction = mutateFunction; } get crossover() { return this._crossover; } get sampler() { return this._sampler; } get mutateFunction() { return this._mutateFunction; } } exports.Procreation = Procreation; //# sourceMappingURL=Procreation.js.map