Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/RunCollectionDictionaryView.cs @ 7101

Last change on this file since 7101 was 5303, checked in by cneumuel, 13 years ago

#1215

  • manipulators for one and all parameters
  • SolutionCache to avoid multiple evaluations of equal solutions
  • RunsAnalyzer which stores all base level runs
  • ItemDictionaryView for runs
File size: 894 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Drawing;
5using System.Data;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9using HeuristicLab.MainForm;
10using HeuristicLab.Data;
11using HeuristicLab.Optimization;
12using HeuristicLab.Core;
13
14namespace HeuristicLab.Problems.MetaOptimization.Views {
15  [View("RunCollectionDictionaryView")]
16  [Content(typeof(ItemDictionary<StringValue, RunCollection>), IsDefaultView = false)]
17  public sealed partial class RunCollectionDictionaryView : ItemDictionaryView<StringValue, RunCollection> {
18    public new ItemDictionary<StringValue, RunCollection> Content {
19      get { return (ItemDictionary<StringValue, RunCollection>)base.Content; }
20      set { base.Content = value; }
21    }
22
23    public RunCollectionDictionaryView() {
24      InitializeComponent();
25    }
26  }
27}
Note: See TracBrowser for help on using the repository browser.