Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/17/10 10:26:55 (14 years ago)
Author:
cneumuel
Message:
  • 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:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/BusinessObjects/JobDto.cs

    r4368 r4423  
    4141    [Storable]
    4242    [DataMember]
    43     public Guid? UserId { get; set; }
     43    public Guid UserId { get; set; }
    4444    [Storable]
    4545    [DataMember]
     
    4747    [Storable]
    4848    [DataMember]
    49     public JobDto ParentJob { get; set; }
     49    public Guid? ParentJobId { get; set; }
    5050    [Storable]
    5151    [DataMember]
    52     public double? Percentage { get; set; }
     52    public TimeSpan ExecutionTime { get; set; }
    5353    [Storable]
    5454    [DataMember]
     
    104104      clone.Id = this.Id;
    105105      clone.MemoryNeeded = this.MemoryNeeded;
    106       clone.ParentJob = (JobDto)cloner.Clone(this.ParentJob);
    107       clone.Percentage = this.Percentage;
     106      clone.ParentJobId = this.ParentJobId;
     107      clone.ExecutionTime = this.ExecutionTime;
    108108      clone.PluginsNeeded = (from p in this.PluginsNeeded
    109109                             select (HivePluginInfoDto)cloner.Clone(p)).ToList();
Note: See TracChangeset for help on using the changeset viewer.