Changeset 11961 for trunk/sources/HeuristicLab.Problems.Programmable/3.3/SingleObjectiveProgrammableProblem.cs
- Timestamp:
- 02/06/15 17:52:14 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.Programmable
- Files:
-
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Programmable/3.3
- Property svn:ignore
-
old new 1 1 *.user 2 bin
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.Problems.Programmable/3.3/SingleObjectiveProgrammableProblem.cs
r11949 r11961 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 23 using System.Drawing; 24 24 using HeuristicLab.Common; 25 using HeuristicLab.Common.Resources; 25 26 using HeuristicLab.Core; 26 27 using HeuristicLab.Optimization; … … 30 31 namespace HeuristicLab.Problems.Programmable { 31 32 [Item("Programmable Problem (single-objective)", "Represents a single-objective problem that can be programmed with a script.")] 32 [Creatable(" 1 Test")]33 [Creatable("Problems")] 33 34 [StorableClass] 34 35 public sealed class SingleObjectiveProgrammableProblem : SingleObjectiveBasicProblem<IEncoding> { 36 public static new Image StaticItemImage { 37 get { return VSImageLibrary.Script; } 38 } 35 39 36 40 private FixedValueParameter<SingleObjectiveProblemDefinitionScript> SingleObjectiveProblemScriptParameter {
Note: See TracChangeset
for help on using the changeset viewer.