From 550caeee11086bd56db69176b3149ddfa160ee30 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Sat, 17 Oct 2015 17:02:24 +0200 Subject: Reverted to a simple decision tree Turns out it's much easier to write a bot by hand with if statements. --- include/brain/bias_node.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/brain/bias_node.h') diff --git a/include/brain/bias_node.h b/include/brain/bias_node.h index 0b57e15..77c5884 100644 --- a/include/brain/bias_node.h +++ b/include/brain/bias_node.h @@ -5,8 +5,8 @@ class BiasNode: public NeuralNode { public: - BiasNode() +BiasNode() : NeuralNode("b0") { - _activation = 1; + _activation = 1; } }; -- cgit v1.2.3