Changeset 3694 for trunk/sources/HeuristicLab.Optimization
- Timestamp:
- 05/07/10 04:45:45 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Algorithm.cs
r3616 r3694 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using HeuristicLab.Data; 27 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 29 … … 199 200 } 200 201 public virtual void CollectResultValues(IDictionary<string, IItem> values) { 202 values.Add("Execution Time", new TimeSpanValue(ExecutionTime)); 201 203 foreach (IResult result in Results) 202 204 values.Add(result.Name, result.Value); … … 242 244 ExecutionState = ExecutionState.Stopped; 243 245 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)); 245 247 EventHandler handler = Stopped; 246 248 if (handler != null) handler(this, EventArgs.Empty);
Note: See TracChangeset
for help on using the changeset viewer.