Changeset 7385 for branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBRun.cs
- Timestamp:
- 01/20/12 15:02:06 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBRun.cs
r7331 r7385 24 24 using System.Drawing; 25 25 using System.IO; 26 using System.Linq;27 26 using HeuristicLab.Common; 28 27 using HeuristicLab.Core; … … 132 131 run.ClientId = Guid.Empty; 133 132 run.CreatedDate = createdDate; 134 run.RandomSeed = Parameters.Where(x => (x.Key == "Seed") && (x.Value is Data.IntValue)).Select(x => ((Data.IntValue)x.Value).Value).FirstOrDefault();135 133 run.ParameterValues = ConvertToValues(Parameters); 136 134 run.ResultValues = ConvertToValues(Results);
Note: See TracChangeset
for help on using the changeset viewer.