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