Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment/3.3/HiveExperimentList.cs @ 4423

Last change on this file since 4423 was 4423, checked in by cneumuel, 14 years ago
  • Refactored HL.Hive.Experiment. JobItems are not called HiveJobs and OptimizerJobs do not contain a hierarchy anymore.
  • Dynamic generation of jobs on a slave are not reflected on the client user interface.
  • Optimizer-Trees are now strictly synchronized with the HiveJob-Trees (also the ComputeInParallel property is taken into account when the Child HiveJobs are created)
  • Improved the way a class can report progress and lock the UI (IProgressReporter, IProgress, Progress, ProgressView)
  • Changes were made to the config-files, so that server and clients work with blade12.hpc.fh-hagenberg.at
  • Lots of small changes and bugfixes
File size: 1.0 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
7using HeuristicLab.Hive.Contracts.BusinessObjects;
8using HeuristicLab.Hive.Contracts.Interfaces;
9using HeuristicLab.Hive.Experiment.Properties;
10using System.ServiceModel;
11using System.Threading;
12using HeuristicLab.Hive.Contracts.ResponseObjects;
13
14namespace HeuristicLab.Hive.Experiment {
15  [Item("HiveExperiment List", "Represents a list of hive experiments.")]
16  [StorableClass]
17  public class HiveExperimentList : ItemList<HiveExperiment> {
18    public HiveExperimentList() : base() { }
19    public HiveExperimentList(int capacity) : base(capacity) { }
20    public HiveExperimentList(IEnumerable<HiveExperiment> collection) : base(collection) { }
21
22    public override Common.IDeepCloneable Clone(Common.Cloner cloner) {
23      HiveExperiment clone = (HiveExperiment)base.Clone(cloner);
24      return clone;
25    }
26  }
27}
Note: See TracBrowser for help on using the repository browser.