Beispiel #1
0
 public Form1()
 {
     InitializeComponent();
     var watch = new Stopwatch();
     watch.Start();
     perceptron = new Perceptron(Config.CountOfRElements, Config.ACount, Config.XCount);
     InitializeGrid();
     imgHendler = new CustomImageHendler(Config.ImgFolder,
         (b, c) => new CustomImage<ClassType>(b, c));
     watch.Stop();
     this.Text = string.Format("{0} | {1}", "DarkProgramming", watch.ElapsedMilliseconds);
 }
Beispiel #2
0
Datei: AToL.cs Projekt: JFFby/MRO
 public AToL(Perceptron perceptron)
 {
     InitializeComponent();
     this.perceptron = perceptron;
     ItnitGtid();
 }
Beispiel #3
0
Datei: XTA.cs Projekt: JFFby/MRO
 public XTA(Perceptron perceptron)
 {
     InitializeComponent();
     this.perceptron = perceptron;
     InitGrids();
 }