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/MultiObjectiveProgrammableProblem.cs

    r11812 r11814  
    2828
    2929namespace HeuristicLab.Problems.Programmable {
    30   [Item("Scriptable Problem (multi-objective)", "Represents a multi-objective problem that can be scripted.")]
     30  [Item("Programmable Problem (multi-objective)", "Represents a multi-objective problem that can be programmed with a script.")]
    3131  [Creatable("1 Test")]
    3232  [StorableClass]
    33   public sealed class MultiObjectiveScriptableProblem : MultiObjectiveProgrammableProblem<IEncoding> {
     33  public sealed class MultiObjectiveProgrammableProblem : MultiObjectiveBasicProblem<IEncoding> {
    3434
    3535    private FixedValueParameter<MultiObjectiveProblemDefinitionScript> MultiObjectiveProblemScriptParameter {
     
    4545    }
    4646
    47     private MultiObjectiveScriptableProblem(MultiObjectiveScriptableProblem original, Cloner cloner)
     47    private MultiObjectiveProgrammableProblem(MultiObjectiveProgrammableProblem original, Cloner cloner)
    4848      : base(original, cloner) {
    4949      RegisterEvents();
     
    5555      }
    5656    }
    57     public override IDeepCloneable Clone(Cloner cloner) { return new MultiObjectiveScriptableProblem(this, cloner); }
     57    public override IDeepCloneable Clone(Cloner cloner) { return new MultiObjectiveProgrammableProblem(this, cloner); }
    5858
    5959
    6060    [StorableConstructor]
    61     private MultiObjectiveScriptableProblem(bool deserializing) : base(deserializing) { }
     61    private MultiObjectiveProgrammableProblem(bool deserializing) : base(deserializing) { }
    6262
    63     public MultiObjectiveScriptableProblem()
     63    public MultiObjectiveProgrammableProblem()
    6464      : base() {
    6565      Parameters.Add(new FixedValueParameter<MultiObjectiveProblemDefinitionScript>("ProblemScript", "Defines the problem.", new MultiObjectiveProblemDefinitionScript() { Name = Name }));
Note: See TracChangeset for help on using the changeset viewer.