Changeset 12128
- Timestamp:
- 03/04/15 16:30:38 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/TimeLimitRunOptimizer/HeuristicLab.Optimization/3.3/MetaOptimizers/TimeLimitRun.cs
r9153 r12128 376 376 string time = Math.Round(ExecutionTime.TotalSeconds, 1).ToString("0.0"); 377 377 string runName = "Snapshot " + time + "s " + algorithm.Name; 378 Run run; 379 if (StoreAlgorithmInEachSnapshot) { 380 var temporarilySetStoreFlag = !Algorithm.StoreAlgorithmInEachRun; 381 if (temporarilySetStoreFlag) Algorithm.StoreAlgorithmInEachRun = true; 382 run = new Run(runName, Algorithm); 383 if (temporarilySetStoreFlag) Algorithm.StoreAlgorithmInEachRun = false; 384 } else { 385 // duplicate code of Run.Initialize - necessary, because Algorithm property doesn't have a setter 386 run = new Run() { Name = runName }; 387 var parameters = new Dictionary<string, IItem>(); 388 var results = new Dictionary<string, IItem>(); 389 algorithm.CollectParameterValues(parameters); 390 algorithm.CollectResultValues(results); 391 var cloner = new Cloner(); 392 foreach (var kvp in parameters.Select(x => new KeyValuePair<string, IItem>(x.Key, cloner.Clone(x.Value))).ToDictionary(x => x.Key, x => x.Value)) 393 run.Parameters.Add(kvp); 394 foreach (var kvp in results.Select(x => new KeyValuePair<string, IItem>(x.Key, cloner.Clone(x.Value))).ToDictionary(x => x.Key, x => x.Value)) 395 run.Results.Add(kvp); 396 } 378 var changed = false; 379 if (StoreAlgorithmInEachSnapshot && !Algorithm.StoreAlgorithmInEachRun) { 380 Algorithm.StoreAlgorithmInEachRun = true; 381 changed = true; 382 } else if (!StoreAlgorithmInEachSnapshot && Algorithm.StoreAlgorithmInEachRun) { 383 Algorithm.StoreAlgorithmInEachRun = false; 384 changed = true; 385 } 386 var run = new Run(runName, Algorithm); 387 if (changed) 388 Algorithm.StoreAlgorithmInEachRun = !Algorithm.StoreAlgorithmInEachRun; 389 397 390 snapshots.Add(run); 398 391 }
Note: See TracChangeset
for help on using the changeset viewer.