コード例 #1
0
ファイル: Form1.cs プロジェクト: JFFby/MRO
 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);
 }
コード例 #2
0
ファイル: AToL.cs プロジェクト: JFFby/MRO
 public AToL(Perceptron perceptron)
 {
     InitializeComponent();
     this.perceptron = perceptron;
     ItnitGtid();
 }
コード例 #3
0
ファイル: XTA.cs プロジェクト: JFFby/MRO
 public XTA(Perceptron perceptron)
 {
     InitializeComponent();
     this.perceptron = perceptron;
     InitGrids();
 }