Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/10 04:45:45 (14 years ago)
Author:
swagner
Message:

Implemented reviewers' comments (#893)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/Algorithm.cs

    r3616 r3694  
    2525using HeuristicLab.Common;
    2626using HeuristicLab.Core;
     27using HeuristicLab.Data;
    2728using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2829
     
    199200    }
    200201    public virtual void CollectResultValues(IDictionary<string, IItem> values) {
     202      values.Add("Execution Time", new TimeSpanValue(ExecutionTime));
    201203      foreach (IResult result in Results)
    202204        values.Add(result.Name, result.Value);
     
    242244      ExecutionState = ExecutionState.Stopped;
    243245      runsCounter++;
    244       runs.Add(new Run(string.Format("{0} Run {1} ({2})", Name, runsCounter, ExecutionTime), this));
     246      runs.Add(new Run(string.Format("{0} Run {1}", Name, runsCounter), this));
    245247      EventHandler handler = Stopped;
    246248      if (handler != null) handler(this, EventArgs.Empty);
Note: See TracChangeset for help on using the changeset viewer.