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/HeartBeatData.cs

    r4264 r4423  
    3737    public int FreeCores { get; set; }
    3838    [DataMember]
    39     public Dictionary<Guid, double> JobProgress { get; set; } // TODO: define Type
     39    public Dictionary<Guid, TimeSpan> JobProgress { get; set; } // TODO: define Type
    4040    [DataMember]
    4141    public bool IsAllowedToCalculate { get; set; } // this is true if slave is allowed to work according to calendar
     
    4343    public override string ToString() {
    4444      String val = "SlaveId: " + SlaveId + ", FreeCores: " + FreeCores;
    45       foreach (KeyValuePair<Guid, double> kvp in JobProgress) {
    46         val += "\nId" + kvp.Key + " Progress " + kvp.Value;
     45      foreach (KeyValuePair<Guid, TimeSpan> kvp in JobProgress) {
     46        val += "\nId" + kvp.Key + " ExecutionTime " + kvp.Value;
    4747      }
    4848      return val;
Note: See TracChangeset for help on using the changeset viewer.