Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/21/14 18:49:05 (10 years ago)
Author:
abeham
Message:

#2174: Major refactoring

  • Removed ProblemDefinitionHosts
  • Renamed ParameterVector to Individual
  • Renamed Configuration to Encoding
  • Changed handling of existing operators that they will not be removed and recreated, but only rewired
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProgrammableProblem/HeuristicLab.Problems.Programmable.Views/3.3/ProblemDefinitionScriptView.cs

    r11397 r11484  
    2525namespace HeuristicLab.Problems.Programmable.Views {
    2626  [View("ProblemDefinitionScriptView")]
    27   [Content(typeof(ProblemDefinitionScript), IsDefaultView = true)]
     27  [Content(typeof(ProblemScript), IsDefaultView = true)]
    2828  public partial class ProblemDefinitionScriptView : ScriptView {
    2929
    30     public new ProblemDefinitionScript Content {
    31       get { return (ProblemDefinitionScript)base.Content; }
     30    public new ProblemScript Content {
     31      get { return (ProblemScript)base.Content; }
    3232      set { base.Content = value; }
    3333    }
Note: See TracChangeset for help on using the changeset viewer.