- Timestamp:
- 08/01/15 15:43:41 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GrammaticalOptimization/Evaluation/Run.cs
r12815 r12824 52 52 BestSolution = sentence; 53 53 BestSolutionFoundAt = evaluations; 54 FoundSolutions.Add(new FoundSolution(DateTime.Now, Evaluations, quality, sentence)); 54 FoundSolution solution = new FoundSolution(DateTime.Now, Evaluations, quality, sentence); 55 BestSolutionTime = solution.Time - StartTime; 56 FoundSolutions.Add(solution); 55 57 } 56 58 };
Note: See TracChangeset
for help on using the changeset viewer.