- Timestamp:
- 11/24/15 16:42:09 (9 years ago)
- Location:
- branches/ProblemRefactoring/HeuristicLab.Problems.Programmable/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Problems.Programmable/3.3/HeuristicLab.Problems.Programmable-3.3.csproj
r13361 r13364 153 153 <Project>{66d249c3-a01d-42a8-82a2-919bc8ec3d83}</Project> 154 154 <Name>HeuristicLab.Encodings.BinaryVectorEncoding-3.3</Name> 155 <Private>False</Private> 156 </ProjectReference> 157 <ProjectReference Include="..\..\HeuristicLab.Encodings.IntegerVectorEncoding\3.3\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.csproj"> 158 <Project>{ddfb14dd-2a85-493c-a52d-e69729bbaeb0}</Project> 159 <Name>HeuristicLab.Encodings.IntegerVectorEncoding-3.3</Name> 160 <Private>False</Private> 155 161 </ProjectReference> 156 162 <ProjectReference Include="..\..\HeuristicLab.Encodings.RealVectorEncoding\3.3\HeuristicLab.Encodings.RealVectorEncoding-3.3.csproj"> 157 163 <Project>{bb6d334a-4bb6-4674-9883-31a6ebb32cab}</Project> 158 164 <Name>HeuristicLab.Encodings.RealVectorEncoding-3.3</Name> 165 <Private>False</Private> 159 166 </ProjectReference> 160 167 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj"> -
branches/ProblemRefactoring/HeuristicLab.Problems.Programmable/3.3/ProgrammableProblemInstances.cs
r13361 r13364 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Encodings.BinaryVectorEncoding; 27 using HeuristicLab.Encodings.IntegerVectorEncoding; 27 28 using HeuristicLab.Encodings.RealVectorEncoding; 28 29 using HeuristicLab.Optimization; … … 79 80 } 80 81 81 //[Item("Integer Vector Programmable Problem (single-objective)", "Represents an integer vector single-objective problem that can be programmed with a script.")] 82 //[Creatable(CreatableAttribute.Categories.Problems, Priority = 100)] 83 //[StorableClass] 84 //public sealed class SingleObjectiveIntegerVectorProgrammableProblem : SingleObjectiveProgrammableProblem<IntegerVectorEncoding, IntegerVector> { 85 86 // [StorableConstructor] 87 // private SingleObjectiveIntegerVectorProgrammableProblem(bool deserializing) : base(deserializing) { } 88 // private SingleObjectiveIntegerVectorProgrammableProblem(SingleObjectiveIntegerVectorProgrammableProblem original, Cloner cloner) : base(original, cloner) { } 89 // public SingleObjectiveIntegerVectorProgrammableProblem() 90 // : base(string.Format(ScriptTemplates.CompiledSingleObjectiveProblemDefinition, "HeuristicLab.Encodings.IntegerVectorEncoding", "IntegerVectorEncoding", "IntegerVector")) { } 91 92 // public override IDeepCloneable Clone(Cloner cloner) { 93 // return new SingleObjectiveIntegerVectorProgrammableProblem(this, cloner); 94 // } 95 //} 82 [Item("Integer Vector Programmable Problem (single-objective)", "Represents an integer vector single-objective problem that can be programmed with a script.")] 83 [Creatable(CreatableAttribute.Categories.Problems, Priority = 100)] 84 [StorableClass] 85 public sealed class SingleObjectiveIntegerVectorProgrammableProblem : SingleObjectiveProgrammableProblem<IntegerVectorEncoding, IntegerVector> { 86 87 [StorableConstructor] 88 private SingleObjectiveIntegerVectorProgrammableProblem(bool deserializing) : base(deserializing) { } 89 private SingleObjectiveIntegerVectorProgrammableProblem(SingleObjectiveIntegerVectorProgrammableProblem original, Cloner cloner) : base(original, cloner) { } 90 91 public SingleObjectiveIntegerVectorProgrammableProblem() 92 : base() { 93 var codeTemplate = ScriptTemplates.CompiledSingleObjectiveProblemDefinition_Template; 94 codeTemplate = codeTemplate.Replace(ENCODING_NAMESPACE, "HeuristicLab.Encodings.IntegerVectorEncoding"); 95 codeTemplate = codeTemplate.Replace(ENCODING_CLASS, "IntegerVectorEncoding"); 96 codeTemplate = codeTemplate.Replace(SOLUTION_CLASS, "IntegerVector"); 97 ProblemScript.Code = codeTemplate; 98 } 99 100 public override IDeepCloneable Clone(Cloner cloner) { 101 return new SingleObjectiveIntegerVectorProgrammableProblem(this, cloner); 102 } 103 } 96 104 97 105 [Item("Real Vector Programmable Problem (single-objective)", "Represents a real vector single-objective problem that can be programmed with a script.")] … … 216 224 } 217 225 218 //[Item("Integer Vector Programmable Problem (multi-objective)", "Represents an integer vector multi-objective problem that can be programmed with a script.")] 219 //[Creatable(CreatableAttribute.Categories.Problems, Priority = 100)] 220 //[StorableClass] 221 //public sealed class MultiObjectiveIntegerVectorProgrammableProblem : MultiObjectiveProgrammableProblem<IntegerVectorEncoding, IntegerVector> { 222 223 // [StorableConstructor] 224 // private MultiObjectiveIntegerVectorProgrammableProblem(bool deserializing) : base(deserializing) { } 225 // private MultiObjectiveIntegerVectorProgrammableProblem(MultiObjectiveIntegerVectorProgrammableProblem original, Cloner cloner) : base(original, cloner) { } 226 // public MultiObjectiveIntegerVectorProgrammableProblem() 227 // : base(string.Format(ScriptTemplates.CompiledMultiObjectiveProblemDefinition, "HeuristicLab.Encodings.IntegerVectorEncoding", "IntegerVectorEncoding", "IntegerVector")) { } 228 229 // public override IDeepCloneable Clone(Cloner cloner) { 230 // return new MultiObjectiveIntegerVectorProgrammableProblem(this, cloner); 231 // } 232 //} 226 [Item("Integer Vector Programmable Problem (multi-objective)", "Represents an integer vector multi-objective problem that can be programmed with a script.")] 227 [Creatable(CreatableAttribute.Categories.Problems, Priority = 100)] 228 [StorableClass] 229 public sealed class MultiObjectiveIntegerVectorProgrammableProblem : MultiObjectiveProgrammableProblem<IntegerVectorEncoding, IntegerVector> { 230 231 [StorableConstructor] 232 private MultiObjectiveIntegerVectorProgrammableProblem(bool deserializing) : base(deserializing) { } 233 private MultiObjectiveIntegerVectorProgrammableProblem(MultiObjectiveIntegerVectorProgrammableProblem original, Cloner cloner) : base(original, cloner) { } 234 235 public MultiObjectiveIntegerVectorProgrammableProblem() 236 : base() { 237 var codeTemplate = ScriptTemplates.CompiledSingleObjectiveProblemDefinition_Template; 238 codeTemplate = codeTemplate.Replace(ENCODING_NAMESPACE, "HeuristicLab.Encodings.IntegerVectorEncoding"); 239 codeTemplate = codeTemplate.Replace(ENCODING_CLASS, "IntegerVectorEncoding"); 240 codeTemplate = codeTemplate.Replace(SOLUTION_CLASS, "IntegerVector"); 241 ProblemScript.Code = codeTemplate; 242 } 243 244 public override IDeepCloneable Clone(Cloner cloner) { 245 return new MultiObjectiveIntegerVectorProgrammableProblem(this, cloner); 246 } 247 } 233 248 234 249 [Item("Real Vector Programmable Problem (multi-objective)", "Represents a real vector multi-objective problem that can be programmed with a script.")]
Note: See TracChangeset
for help on using the changeset viewer.