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

File:
1 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    }
Note: See TracChangeset for help on using the changeset viewer.