Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/19/10 06:19:16 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on operators, engines, and optimization
Location:
trunk/sources/HeuristicLab.Optimization.Views
Files:
2 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/ProblemView.cs

    r2829 r2834  
    2020#endregion
    2121
     22using HeuristicLab.Core.Views;
    2223using HeuristicLab.MainForm;
    2324
    24 namespace HeuristicLab.Core.Views {
     25namespace HeuristicLab.Optimization.Views {
    2526  /// <summary>
    2627  /// The base class for visual representations of items.
     
    5253      base.OnContentChanged();
    5354      if (Content == null)
    54         valueParameterCollectionView.Content = null;
     55        parameterCollectionView.Content = null;
    5556      else
    56         valueParameterCollectionView.Content = ((IProblem)Content).Parameters;
     57        parameterCollectionView.Content = ((IProblem)Content).Parameters;
    5758    }
    5859  }
Note: See TracChangeset for help on using the changeset viewer.