Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/21/15 13:10:24 (9 years ago)
Author:
mkommend
Message:

#2174: Renamed scriptable to programmable problem.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/New/SingleObjectiveProgrammableProblem.cs

    r11812 r11814  
    2929
    3030namespace HeuristicLab.Problems.Programmable {
    31   [Item("Scriptable Problem (single-objective)", "Represents a single-objective problem that can be scripted.")]
     31  [Item("Programmable Problem (single-objective)", "Represents a single-objective problem that can be programmed with a script.")]
    3232  [Creatable("1 Test")]
    3333  [StorableClass]
    34   public sealed class SingleObjectiveScriptableProblem : SingleObjectiveProgrammableProblem<IEncoding> {
     34  public sealed class SingleObjectiveProgrammableProblem : SingleObjectiveBasicProblem<IEncoding> {
    3535
    3636    private FixedValueParameter<SingleObjectiveProblemDefinitionScript> SingleObjectiveProblemScriptParameter {
     
    4646    }
    4747
    48     private SingleObjectiveScriptableProblem(SingleObjectiveScriptableProblem original, Cloner cloner)
     48    private SingleObjectiveProgrammableProblem(SingleObjectiveProgrammableProblem original, Cloner cloner)
    4949      : base(original, cloner) {
    5050      RegisterEvents();
     
    5656      }
    5757    }
    58     public override IDeepCloneable Clone(Cloner cloner) { return new SingleObjectiveScriptableProblem(this, cloner); }
     58    public override IDeepCloneable Clone(Cloner cloner) { return new SingleObjectiveProgrammableProblem(this, cloner); }
    5959
    6060
    6161    [StorableConstructor]
    62     private SingleObjectiveScriptableProblem(bool deserializing) : base(deserializing) { }
     62    private SingleObjectiveProgrammableProblem(bool deserializing) : base(deserializing) { }
    6363
    64     public SingleObjectiveScriptableProblem()
     64    public SingleObjectiveProgrammableProblem()
    6565      : base() {
    6666      Parameters.Add(new FixedValueParameter<SingleObjectiveProblemDefinitionScript>("ProblemScript", "Defines the problem.", new SingleObjectiveProblemDefinitionScript() { Name = Name }));
Note: See TracChangeset for help on using the changeset viewer.