Changeset 13911
- Timestamp:
- 06/17/16 14:23:56 (8 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 13681
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimizer
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Optimizer merged: 13681
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimizer/3.3/CreateExperimentDialog.Designer.cs
r13454 r13911 147 147 // repetitionsNumericUpDown 148 148 // 149 this.repetitionsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 150 149 this.repetitionsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 150 | System.Windows.Forms.AnchorStyles.Right))); 151 151 this.repetitionsNumericUpDown.Location = new System.Drawing.Point(113, 28); 152 152 this.repetitionsNumericUpDown.Maximum = new decimal(new int[] { … … 234 234 // tabControl 235 235 // 236 this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 237 | System.Windows.Forms.AnchorStyles.Left)238 236 this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 237 | System.Windows.Forms.AnchorStyles.Left) 238 | System.Windows.Forms.AnchorStyles.Right))); 239 239 this.tabControl.Controls.Add(this.parametersTabPage); 240 240 this.tabControl.Controls.Add(this.instancesTabPage); … … 287 287 this.parametersListView.MultiSelect = false; 288 288 this.parametersListView.Name = "parametersListView"; 289 this.parametersListView.ShowItemToolTips = true; 289 290 this.parametersListView.Size = new System.Drawing.Size(155, 285); 290 291 this.parametersListView.TabIndex = 0; … … 310 311 // stringConvertibleArrayView 311 312 // 312 this.stringConvertibleArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 313 | System.Windows.Forms.AnchorStyles.Left)314 313 this.stringConvertibleArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 314 | System.Windows.Forms.AnchorStyles.Left) 315 | System.Windows.Forms.AnchorStyles.Right))); 315 316 this.stringConvertibleArrayView.Caption = "StringConvertibleArray View"; 316 317 this.stringConvertibleArrayView.Content = null; … … 332 333 // choicesListView 333 334 // 334 this.choicesListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 335 | System.Windows.Forms.AnchorStyles.Left)336 335 this.choicesListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 336 | System.Windows.Forms.AnchorStyles.Left) 337 | System.Windows.Forms.AnchorStyles.Right))); 337 338 this.choicesListView.CheckBoxes = true; 338 339 this.choicesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { … … 378 379 // instancesTreeView 379 380 // 380 this.instancesTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 381 | System.Windows.Forms.AnchorStyles.Left)382 381 this.instancesTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 382 | System.Windows.Forms.AnchorStyles.Left) 383 | System.Windows.Forms.AnchorStyles.Right))); 383 384 this.instancesTreeView.CheckBoxes = true; 384 385 this.instancesTreeView.Location = new System.Drawing.Point(6, 35); … … 422 423 // experimentCreationProgressBar 423 424 // 424 this.experimentCreationProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 425 425 this.experimentCreationProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 426 | System.Windows.Forms.AnchorStyles.Right))); 426 427 this.experimentCreationProgressBar.Location = new System.Drawing.Point(187, 377); 427 428 this.experimentCreationProgressBar.Name = "experimentCreationProgressBar"; -
stable/HeuristicLab.Optimizer/3.3/CreateExperimentDialog.cs
r13885 r13911 56 56 private bool createBatchRun; 57 57 private int repetitions; 58 private Dictionary<IProblemInstanceProvider, HashSet<IDataDescriptor>> instances;59 private Dictionary<IValueParameter, IntArray> intParameters;60 private Dictionary<IValueParameter, DoubleArray> doubleParameters;61 private HashSet<IValueParameter> boolParameters;62 private Dictionary<IValueParameter, HashSet<IItem>> multipleChoiceParameters;63 private IItem optionalNullChoice = new BoolValue(); // any item will do58 private readonly Dictionary<IProblemInstanceProvider, HashSet<IDataDescriptor>> instances; 59 private readonly Dictionary<IValueParameter, IntArray> intParameters; 60 private readonly Dictionary<IValueParameter, DoubleArray> doubleParameters; 61 private readonly HashSet<IValueParameter> boolParameters; 62 private readonly Dictionary<IValueParameter, HashSet<IItem>> multipleChoiceParameters; 63 private readonly IItem optionalNullChoice = new BoolValue(); // any item will do 64 64 65 65 private StringBuilder failedInstances; 66 private EventWaitHandle backgroundWorkerWaitHandle = new ManualResetEvent(false);66 private readonly EventWaitHandle backgroundWorkerWaitHandle = new ManualResetEvent(false); 67 67 private bool suppressTreeViewEventHandling, suppressCheckAllNoneEventHandling; 68 68 … … 489 489 || typeof(OptionalConstrainedValueParameter<>).IsAssignableFrom(param.GetType().GetGenericTypeDefinition()) 490 490 || typeof(ConstrainedValueParameter<>).IsAssignableFrom(param.GetType().GetGenericTypeDefinition())) 491 parametersListView.Items.Add(new ListViewItem(param.Name) { Tag = param });491 parametersListView.Items.Add(new ListViewItem(param.Name) { Tag = param, ToolTipText = param.Description }); 492 492 } 493 493 }
Note: See TracChangeset
for help on using the changeset viewer.