Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/Evaluation/FoundSolution.cs @ 12781

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

#2283 stable GUI; ThreadPool for runs; improved TreeAnalysis

File size: 594 bytes
Line 
1using System;
2
3namespace Evaluation
4{
5    public class FoundSolution
6    {
7        public DateTime Time { get; set; }
8
9        public int Iteration { get; set; }
10
11        public double Quality { get; set; }
12
13        public string Sentence { get; set; }
14
15        public FoundSolution()
16        {
17           
18        }
19
20        public FoundSolution(DateTime time, int iteration, double quality, string sentence)
21        {
22            Time = time;
23            Iteration = iteration;
24            Quality = quality;
25            Sentence = sentence;
26        }
27    }
28}
Note: See TracBrowser for help on using the repository browser.