@zfunction/genetics-js
Version:
Genetic and evolutionary algorithms framework for the web
6 lines (5 loc) • 336 B
TypeScript
import { TLLogic } from "./tl-logic";
import { NumericIndividual } from "./";
export declare function setOriginalTl(tl: ReadonlyArray<TLLogic>): void;
export declare function genotypeToTlLogic(genotype: NumericIndividual | number[]): TLLogic[];
export declare function tlLogicToGenotype(tlArray: ReadonlyArray<TLLogic>): number[];