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