genetic-search
Version:
Multiprocessing genetic algorithm implementation library
46 lines (45 loc) • 747 B
text/typescript
export function dataProviderForTravelingSalesman(): Array<[number[][]]> {
return [
[
[
[],
[],
[],
[],
],
],
[
[
[],
[],
[],
[],
]
],
[
[
[],
[],
[],
[],
],
],
[
[
[],
[],
[],
[],
],
],
[
[
[],
[],
[],
[],
[],
],
],
];
}