Changeset 277
- Timestamp:
- 05/30/08 12:42:12 (16 years ago)
- Location:
- branches/3.0/sources/HeuristicLab.StructureIdentification
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0/sources/HeuristicLab.StructureIdentification/Manipulation/ChangeNodeTypeManipulation.cs
r23 r277 32 32 namespace HeuristicLab.StructureIdentification { 33 33 public class ChangeNodeTypeManipulation : OperatorBase { 34 35 public override string Description { 36 get { 37 return @"This manipulation operator selects a random tree-node and changes the function type. 38 If this leads to a constraint-violation (wrong number or type of sub-trees) the sub-trees are repaired 39 resulting in a valid tree again."; 40 } 41 } 42 34 43 public ChangeNodeTypeManipulation() 35 44 : base() { -
branches/3.0/sources/HeuristicLab.StructureIdentification/StructIdProblemInjector.cs
r131 r277 37 37 public StructIdProblemInjector() 38 38 : base() { 39 AddVariableInfo(new VariableInfo("Maximization", "Set to false as structure identification is a minimization problem", typeof(BoolData), VariableKind.New));39 AddVariableInfo(new VariableInfo("Maximization", "Set to false as default (for MSE)", typeof(BoolData), VariableKind.New)); 40 40 AddVariableInfo(new VariableInfo("Dataset", "Dataset", typeof(Dataset), VariableKind.New)); 41 41 AddVariable(new Variable("Dataset", new Dataset())); -
branches/3.0/sources/HeuristicLab.StructureIdentification/StructIdProblemInjectorView.Designer.cs
r2 r277 51 51 this.tabControl = new System.Windows.Forms.TabControl(); 52 52 this.dataTabPage = new System.Windows.Forms.TabPage(); 53 this.variablesLabel = new System.Windows.Forms.Label(); 54 this.variablesTextBox = new System.Windows.Forms.TextBox(); 55 this.samplesLabel = new System.Windows.Forms.Label(); 56 this.samplesTextBox = new System.Windows.Forms.TextBox(); 53 57 this.variableInfosTabPage = new System.Windows.Forms.TabPage(); 54 58 this.operatorBaseVariableInfosView = new HeuristicLab.Core.OperatorBaseVariableInfosView(); 55 59 this.descriptionTabPage = new System.Windows.Forms.TabPage(); 56 60 this.operatorBaseDescriptionView = new HeuristicLab.Core.OperatorBaseDescriptionView(); 57 this.samplesLabel = new System.Windows.Forms.Label();58 this.samplesTextBox = new System.Windows.Forms.TextBox();59 this.variablesLabel = new System.Windows.Forms.Label();60 this.variablesTextBox = new System.Windows.Forms.TextBox();61 61 this.tabControl.SuspendLayout(); 62 62 this.dataTabPage.SuspendLayout(); … … 128 128 this.dataTabPage.Size = new System.Drawing.Size(268, 158); 129 129 this.dataTabPage.TabIndex = 0; 130 this.dataTabPage.Text = " TSPData";130 this.dataTabPage.Text = "Data"; 131 131 this.dataTabPage.UseVisualStyleBackColor = true; 132 // 133 // variablesLabel 134 // 135 this.variablesLabel.Anchor = System.Windows.Forms.AnchorStyles.Left; 136 this.variablesLabel.AutoSize = true; 137 this.variablesLabel.Location = new System.Drawing.Point(6, 61); 138 this.variablesLabel.Name = "variablesLabel"; 139 this.variablesLabel.Size = new System.Drawing.Size(53, 13); 140 this.variablesLabel.TabIndex = 9; 141 this.variablesLabel.Text = "Variables:"; 142 // 143 // variablesTextBox 144 // 145 this.variablesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); 146 this.variablesTextBox.Location = new System.Drawing.Point(62, 58); 147 this.variablesTextBox.Name = "variablesTextBox"; 148 this.variablesTextBox.ReadOnly = true; 149 this.variablesTextBox.Size = new System.Drawing.Size(81, 20); 150 this.variablesTextBox.TabIndex = 10; 151 // 152 // samplesLabel 153 // 154 this.samplesLabel.Anchor = System.Windows.Forms.AnchorStyles.Left; 155 this.samplesLabel.AutoSize = true; 156 this.samplesLabel.Location = new System.Drawing.Point(6, 35); 157 this.samplesLabel.Name = "samplesLabel"; 158 this.samplesLabel.Size = new System.Drawing.Size(50, 13); 159 this.samplesLabel.TabIndex = 7; 160 this.samplesLabel.Text = "Samples:"; 161 // 162 // samplesTextBox 163 // 164 this.samplesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); 165 this.samplesTextBox.Location = new System.Drawing.Point(62, 32); 166 this.samplesTextBox.Name = "samplesTextBox"; 167 this.samplesTextBox.ReadOnly = true; 168 this.samplesTextBox.Size = new System.Drawing.Size(81, 20); 169 this.samplesTextBox.TabIndex = 8; 132 170 // 133 171 // variableInfosTabPage … … 172 210 this.operatorBaseDescriptionView.Size = new System.Drawing.Size(262, 152); 173 211 this.operatorBaseDescriptionView.TabIndex = 0; 174 //175 // samplesLabel176 //177 this.samplesLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;178 this.samplesLabel.AutoSize = true;179 this.samplesLabel.Location = new System.Drawing.Point(6, 35);180 this.samplesLabel.Name = "samplesLabel";181 this.samplesLabel.Size = new System.Drawing.Size(50, 13);182 this.samplesLabel.TabIndex = 7;183 this.samplesLabel.Text = "Samples:";184 //185 // samplesTextBox186 //187 this.samplesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));188 this.samplesTextBox.Location = new System.Drawing.Point(62, 32);189 this.samplesTextBox.Name = "samplesTextBox";190 this.samplesTextBox.ReadOnly = true;191 this.samplesTextBox.Size = new System.Drawing.Size(81, 20);192 this.samplesTextBox.TabIndex = 8;193 //194 // variablesLabel195 //196 this.variablesLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;197 this.variablesLabel.AutoSize = true;198 this.variablesLabel.Location = new System.Drawing.Point(6, 61);199 this.variablesLabel.Name = "variablesLabel";200 this.variablesLabel.Size = new System.Drawing.Size(53, 13);201 this.variablesLabel.TabIndex = 9;202 this.variablesLabel.Text = "Variables:";203 //204 // variablesTextBox205 //206 this.variablesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));207 this.variablesTextBox.Location = new System.Drawing.Point(62, 58);208 this.variablesTextBox.Name = "variablesTextBox";209 this.variablesTextBox.ReadOnly = true;210 this.variablesTextBox.Size = new System.Drawing.Size(81, 20);211 this.variablesTextBox.TabIndex = 10;212 212 // 213 213 // StructIdProblemInjectorView
Note: See TracChangeset
for help on using the changeset viewer.