Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/30/11 01:54:44 (13 years ago)
Author:
swagner
Message:

Changes due to review of benchmark algorithms (#1659):

  • renamed Benchmark to BenchmarkAlgorithm and BenchmarkView to BenchmarkAlgorithmView
  • removed unnecessary assembly references
  • removed IBenchmarkView as the user should be informed that there is no specific view for benchmarks
  • adapted descriptions of plugins and assemblies
  • adapted assembly Guids
  • sealed BenchmarkAlgorithm
  • adapted item names and item descriptions
  • adapted code formatting
Location:
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3

    • Property svn:ignore
      •  

        old new  
        22obj
        33*.vs10x
         4*.user
  • trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3/BenchmarkAlgorithmView.cs

    r7245 r7246  
    2525
    2626namespace HeuristicLab.Algorithms.Benchmarks.Views {
    27   [View("Benchmark View")]
    28   [Content(typeof(Benchmark), true)]
    29   public partial class BenchmarkView : AlgorithmView {
    30     public new Benchmark Content {
    31       get { return (Benchmark)base.Content; }
     27  [View("BenchmarkAlgorithm View")]
     28  [Content(typeof(BenchmarkAlgorithm), true)]
     29  public partial class BenchmarkAlgorithmView : AlgorithmView {
     30    public new BenchmarkAlgorithm Content {
     31      get { return (BenchmarkAlgorithm)base.Content; }
    3232      set { base.Content = value; }
    3333    }
    34     public BenchmarkView() {
     34    public BenchmarkAlgorithmView() {
    3535      InitializeComponent();
    3636      tabControl.TabPages.Remove(this.problemTabPage);
Note: See TracChangeset for help on using the changeset viewer.