| 11 | namespace LycorisNet { |
| 12 | |
| 13 | Node::Node(uint32_t nodeNum, uint32_t nodeType) { |
| 14 | this->nodeNum = nodeNum; |
| 15 | this->nodeType = nodeType; |
| 16 | value = 0; |
| 17 | delta = 0; |
| 18 | bias = 0; |
| 19 | genomeMap = new std::map<Gen, Ome>(); |
| 20 | } |
| 21 | |
| 22 | Node::~Node() { |
| 23 | delete genomeMap; |
nothing calls this directly
no outgoing calls
no test coverage detected