MCPcopy Create free account
hub / github.com/RootHarold/Lycoris / Node

Method Node

LycorisNet/sources/node.cpp:13–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11namespace 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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected