Last change
on this file since 7182 was
5303,
checked in by cneumuel, 14 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
|
Rev | Line | |
---|
[5303] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.ComponentModel;
|
---|
| 4 | using System.Drawing;
|
---|
| 5 | using System.Data;
|
---|
| 6 | using System.Linq;
|
---|
| 7 | using System.Text;
|
---|
| 8 | using System.Windows.Forms;
|
---|
| 9 | using HeuristicLab.MainForm;
|
---|
| 10 | using HeuristicLab.Data;
|
---|
| 11 | using HeuristicLab.Optimization;
|
---|
| 12 | using HeuristicLab.Core;
|
---|
| 13 |
|
---|
| 14 | namespace 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.