Exemplo n.º 1
0
 static void AddToCosts(int b, ANet net)
 {
     Costs.Add(net.LastCost);
 }
Exemplo n.º 2
0
 public static void CacheNet()
 {
     CachedNet = CurrentNet?.DeepCopy();
 }
Exemplo n.º 3
0
 public static void RestoreFromCache()
 {
     CurrentNet = CachedNet.DeepCopy();
 }
Exemplo n.º 4
0
 // Nets
 public static void NewMLP()
 {
     CurrentNet = new MLP();
 }