Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/01/15 15:43:41 (9 years ago)
Author:
aballeit
Message:

#2283 added copy to clipboard function (export for excel)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GrammaticalOptimization/Evaluation/Run.cs

    r12815 r12824  
    5252                    BestSolution = sentence;
    5353                    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);
    5557                }
    5658            };
Note: See TracChangeset for help on using the changeset viewer.