public override string ToString()
 {
     return(string.Format("{0} Inputs, {1} Outputs which {2} of them are BiasNodes, Total {3} Connections.",
                          InputNodes.Count, OutputNodes.Count, OutputNodes.Count(c => c is BiasNode), Connections.Count));
 }