This repository has been archived on 2025-05-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
NEAT/nodegene.py
2019-05-06 22:19:14 +02:00

9 lines
206 B
Python

from typing import List
from connectiongene import ConnectionGene
class NodeGene:
def __init__(self, value: float):
self.value: float = value
self.incoming: List[ConnectionGene] = []