Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/25/13 11:14:56 (11 years ago)
Author:
ascheibe
Message:

#1886 added a caching analyzer for crossover

Location:
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/ConvexHullView.cs

    r9730 r9754  
    3030namespace HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views {
    3131  [View("ConvexHull View")]
    32   [Content(typeof(PermutationSolutionDictionary<PermutationWrapper, PermutationInformation>), false)]
     32  [Content(typeof(PermutationSolutionDictionary), false)]
    3333  public partial class ConvexHullView : ItemView {
    3434    public ConvexHullView() {
     
    3636    }
    3737
    38     public new PermutationSolutionDictionary<PermutationWrapper, PermutationInformation> Content {
    39       get { return (PermutationSolutionDictionary<PermutationWrapper, PermutationInformation>)base.Content; }
     38    public new PermutationSolutionDictionary Content {
     39      get { return (PermutationSolutionDictionary)base.Content; }
    4040      set { base.Content = value; }
    4141    }
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/PermutationSolutionDictionaryView.cs

    r9730 r9754  
    2929namespace HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views {
    3030  [View("PermutationSolutionDictionary View")]
    31   [Content(typeof(PermutationSolutionDictionary<PermutationWrapper, PermutationInformation>), true)]
     31  [Content(typeof(PermutationSolutionDictionary), true)]
    3232  public partial class PermutationSolutionDictionaryView : ItemView {
    3333    public PermutationSolutionDictionaryView() {
     
    3535    }
    3636
    37     public new PermutationSolutionDictionary<PermutationWrapper, PermutationInformation> Content {
    38       get { return (PermutationSolutionDictionary<PermutationWrapper, PermutationInformation>)base.Content; }
     37    public new PermutationSolutionDictionary Content {
     38      get { return (PermutationSolutionDictionary)base.Content; }
    3939      set { base.Content = value; }
    4040    }
     
    5555    protected override void OnInitialized(EventArgs e) {
    5656      base.OnInitialized(e);
    57       var viewTypes = MainFormManager.GetViewTypes(typeof(PermutationSolutionDictionary<PermutationWrapper, PermutationInformation>), true);
     57      var viewTypes = MainFormManager.GetViewTypes(typeof(PermutationSolutionDictionary), true);
    5858      foreach (Type viewType in viewTypes.OrderBy(x => ViewAttribute.GetViewName(x))) {
    5959        if ((viewType != typeof(PermutationSolutionDictionaryView)) && (viewType != typeof(ViewHost))) {
Note: See TracChangeset for help on using the changeset viewer.