@zfunction/genetics-js
Version:
Genetic and evolutionary algorithms framework for the web
20 lines (19 loc) • 439 B
TypeScript
import { Engine } from 'random-js';
/**
* ## GeneratorParams
* Interface that defines the params
* of the individual generator.
*/
export interface GeneratorParams {
/**
* The engine used to generate
* random values. It used the
* engines of `random-js` module.
*/
engine: Engine;
/**
* Length that the generated individual
* is going to have.
*/
length: number;
}