Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SymbolicDataAnalysisGenealogyView.Designer.cs @ 10285

Last change on this file since 10285 was 10285, checked in by bburlacu, 10 years ago

#1772: Added SymbolicDataAnalysisGenealogyView, updated generic analyzer and operators.

File size: 2.8 KB
Line 
1using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
2using HeuristicLab.Visualization;
3using TGraph = HeuristicLab.EvolutionTracking.GenealogyGraph<HeuristicLab.EvolutionTracking.GenealogyGraphNode<HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.ISymbolicExpressionTree>, HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.ISymbolicExpressionTree>;
4using TVertex = HeuristicLab.EvolutionTracking.GenealogyGraphNode<HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.ISymbolicExpressionTree>;
5
6namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
7  partial class SymbolicDataAnalysisGenealogyView {
8    /// <summary>
9    /// Required designer variable.
10    /// </summary>
11    private System.ComponentModel.IContainer components = null;
12
13    /// <summary>
14    /// Clean up any resources being used.
15    /// </summary>
16    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
17    protected override void Dispose(bool disposing) {
18      if (disposing && (components != null)) {
19        components.Dispose();
20      }
21      base.Dispose(disposing);
22    }
23
24    #region Component Designer generated code
25
26    /// <summary>
27    /// Required method for Designer support - do not modify
28    /// the contents of this method with the code editor.
29    /// </summary>
30    private void InitializeComponent() {
31      this.genealogyGraphChart1 = new HeuristicLab.EvolutionTracking.Views.GenealogyGraphChart<TGraph, TVertex, ISymbolicExpressionTree>();
32      this.SuspendLayout();
33      //
34      // genealogyGraphChart1
35      //
36      this.genealogyGraphChart1.BackColor = System.Drawing.SystemColors.Control;
37      this.genealogyGraphChart1.Chart = new Chart(0, 0, genealogyGraphChart1.PreferredSize.Width, genealogyGraphChart1.PreferredSize.Height);
38      this.genealogyGraphChart1.Dock = System.Windows.Forms.DockStyle.Fill;
39      this.genealogyGraphChart1.Location = new System.Drawing.Point(0, 0);
40      this.genealogyGraphChart1.LockGenealogy = false;
41      this.genealogyGraphChart1.Name = "genealogyGraphChart1";
42      this.genealogyGraphChart1.ScaleOnResize = true;
43      this.genealogyGraphChart1.SimpleLineages = false;
44      this.genealogyGraphChart1.Size = new System.Drawing.Size(150, 150);
45      this.genealogyGraphChart1.TabIndex = 0;
46      //
47      // SymbolicDataAnalysisGenealogyView
48      //
49      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
50      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
51      this.Controls.Add(this.genealogyGraphChart1);
52      this.Name = "SymbolicDataAnalysisGenealogyView";
53      this.ResumeLayout(false);
54
55    }
56
57    #endregion
58
59    private EvolutionTracking.Views.GenealogyGraphChart<TGraph, TVertex, ISymbolicExpressionTree> genealogyGraphChart1;
60  }
61}
Note: See TracBrowser for help on using the repository browser.