Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/Evaluation/ViewModel/EvaluationStat.cs @ 12741

Last change on this file since 12741 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 578 bytes
Line 
1using System;
2
3namespace Evaluation.ViewModel
4{
5    public class EvaluationStat
6    {
7        public DateTime Time { get; set; }
8
9        public long Iteration { get; set; }
10
11        public double Quality { get; set; }
12
13        public double CurrentBestQuality { get; set; }
14
15        public EvaluationStat(DateTime time, long iteration, double quality, double currentBestQuality)
16        {
17            Time = time;
18            Iteration = iteration;
19            Quality = quality;
20            CurrentBestQuality = currentBestQuality;
21        }
22    }
23}
Note: See TracBrowser for help on using the repository browser.