forked from Jay-Jay-D/LeanOptimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeneConfiguration.cs
56 lines (46 loc) · 1.38 KB
/
GeneConfiguration.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Optimization
{
[JsonConverter(typeof(GeneConverter))]
[Serializable]
public class GeneConfiguration
{
/// <summary>
/// The unique key of the gene
/// </summary>
public string Key { get; set; }
/// <summary>
/// The minimum value for a decimal value
/// </summary>
public decimal? MinDecimal { get; set; }
/// <summary>
/// The maximum value for a decimal value
/// </summary>
public decimal? MaxDecimal { get; set; }
/// <summary>
/// The minimum value for an int value
/// </summary>
public int? MinInt { get; set; }
/// <summary>
/// The maximum value for an int value
/// </summary>
public int? MaxInt { get; set; }
/// <summary>
/// The decimal precision (rounding) for gene values
/// </summary>
public int? Precision { get; set; }
/// <summary>
/// The non-random starting value of an int
/// </summary>
public int? ActualInt { get; set; }
/// <summary>
/// The non-random starting value of a decimal
/// </summary>
public decimal? ActualDecimal { get; set; }
}
}