Changeset 11797
- Timestamp:
- 01/19/15 13:05:34 (10 years ago)
- Location:
- branches/ProgrammableProblem
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable.Views/3.3/SingleObjectiveScriptableProblemView.cs
r11753 r11797 25 25 using HeuristicLab.MainForm; 26 26 using HeuristicLab.MainForm.WindowsForms; 27 using HeuristicLab.Problems.Programmable.Problems;28 27 29 28 namespace HeuristicLab.Problems.Programmable.Views { -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Encodings/MultiEncoding.cs
r11753 r11797 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 28 using HeuristicLab.PluginInfrastructure; 29 using HeuristicLab.Problems.Programmable.Interfaces;30 29 31 30 namespace HeuristicLab.Problems.Programmable { -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Interfaces/IMultiEncodingOperator.cs
r11753 r11797 22 22 using HeuristicLab.Core; 23 23 24 namespace HeuristicLab.Problems.Programmable .Interfaces{24 namespace HeuristicLab.Problems.Programmable { 25 25 public interface IMultiEncodingOperator : IOperator { 26 26 void AddEncoding(IEncoding encoding); -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/New/OneMaxNew.cs
r11739 r11797 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 26 27 namespace HeuristicLab.Problems.Programmable .Problems{27 namespace HeuristicLab.Problems.Programmable { 28 28 [Item("One Max New", "Represents a single-objective problem that can be programmed.")] 29 29 [Creatable("1 Test")] -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/New/ProgrammableProblem.cs
r11786 r11797 28 28 using HeuristicLab.Parameters; 29 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 using HeuristicLab.Problems.Programmable.Interfaces;31 30 32 31 namespace HeuristicLab.Problems.Programmable { -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/New/Scripts/MultiObjectiveProblemDefinitionScript.cs
r11753 r11797 24 24 using HeuristicLab.Optimization; 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 using HeuristicLab.Problems.Programmable.New.Scripts.Templates;27 26 28 27 namespace HeuristicLab.Problems.Programmable { -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/New/Scripts/SingleObjectiveProblemDefinitionScript.cs
r11753 r11797 25 25 using HeuristicLab.Optimization; 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 using HeuristicLab.Problems.Programmable.New.Scripts.Templates;28 27 29 28 namespace HeuristicLab.Problems.Programmable { -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/New/Scripts/Templates/ScriptTemplates.Designer.cs
r11753 r11797 9 9 //------------------------------------------------------------------------------ 10 10 11 namespace HeuristicLab.Problems.Programmable .New.Scripts.Templates{11 namespace HeuristicLab.Problems.Programmable{ 12 12 using System; 13 13 -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/New/SingleObjectiveScriptableProblem.cs
r11767 r11797 28 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 29 30 namespace HeuristicLab.Problems.Programmable .Problems{30 namespace HeuristicLab.Problems.Programmable { 31 31 [Item("Scriptable Problem (single-objective)", "Represents a single-objective problem that can be scripted.")] 32 32 [Creatable("1 Test")] -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Operators/MultiEncodingCreator.cs
r11587 r11797 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HeuristicLab.Problems.Programmable.Operators;29 28 30 29 namespace HeuristicLab.Problems.Programmable { -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Operators/MultiEncodingCrossover.cs
r11587 r11797 24 24 using HeuristicLab.Optimization; 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 using HeuristicLab.Problems.Programmable.Operators;27 26 28 27 namespace HeuristicLab.Problems.Programmable { -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Operators/MultiEncodingManipulator.cs
r11587 r11797 24 24 using HeuristicLab.Optimization; 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 using HeuristicLab.Problems.Programmable.Operators;27 26 28 27 namespace HeuristicLab.Problems.Programmable { -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Operators/MultiEncodingOperator.cs
r11767 r11797 27 27 using HeuristicLab.Parameters; 28 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 using HeuristicLab.Problems.Programmable.Interfaces;30 29 31 namespace HeuristicLab.Problems.Programmable .Operators{30 namespace HeuristicLab.Problems.Programmable { 32 31 [StorableClass] 33 32 public abstract class MultiEncodingOperator<T> : Operator, IMultiEncodingOperator where T : class,IOperator {
Note: See TracChangeset
for help on using the changeset viewer.