- Preparing search index...
- The search index is not available
TinyNEAT
Function createAdjacencyList
- createAdjacencyList(genes): {
inputToOutput: {
[key: number]: number[];
};
outputToInput: {
[key: number]: number[];
};
}
-
Returns {
inputToOutput: {
[key: number]: number[];
};
outputToInput: {
[key: number]: number[];
};
}
-
inputToOutput: {
[key: number]: number[];
}
-
outputToInput: {
[key: number]: number[];
}
Create a list that maps nodes to all of the nodes that lead from them, and a list that maps nodes to all of the nodes that lead to them.