Changeset 14229 for trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen
- Timestamp:
- 08/03/16 08:33:35 (8 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionEight.cs
r14228 r14229 46 46 protected override int TestPartitionEnd { get { return 520; } } 47 47 48 public int Seed { get; }48 public int Seed { get; private set; } 49 49 50 50 public NguyenFunctionEight() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionEleven.cs
r14228 r14229 46 46 protected override int TestPartitionStart { get { return 20; } } 47 47 protected override int TestPartitionEnd { get { return 1020; } } 48 public int Seed { get; }48 public int Seed { get; private set; } 49 49 50 50 public NguyenFunctionEleven() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionFive.cs
r14228 r14229 45 45 protected override int TestPartitionStart { get { return 20; } } 46 46 protected override int TestPartitionEnd { get { return 520; } } 47 public int Seed { get; }47 public int Seed { get; private set; } 48 48 49 49 public NguyenFunctionFive() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionFour.cs
r14228 r14229 45 45 protected override int TestPartitionStart { get { return 20; } } 46 46 protected override int TestPartitionEnd { get { return 520; } } 47 public int Seed { get; }47 public int Seed { get; private set; } 48 48 49 49 public NguyenFunctionFour() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionNine.cs
r14228 r14229 46 46 protected override int TestPartitionStart { get { return 20; } } 47 47 protected override int TestPartitionEnd { get { return 1020; } } 48 public int Seed { get; }48 public int Seed { get; private set; } 49 49 50 50 public NguyenFunctionNine() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionOne.cs
r14228 r14229 45 45 protected override int TestPartitionStart { get { return 20; } } 46 46 protected override int TestPartitionEnd { get { return 520; } } 47 public int Seed { get; }47 public int Seed { get; private set; } 48 48 49 49 public NguyenFunctionOne() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionSeven.cs
r14228 r14229 46 46 protected override int TestPartitionEnd { get { return 520; } } 47 47 48 public int Seed { get; }48 public int Seed { get; private set; } 49 49 50 50 public NguyenFunctionSeven() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionSix.cs
r14228 r14229 45 45 protected override int TestPartitionStart { get { return 20; } } 46 46 protected override int TestPartitionEnd { get { return 520; } } 47 public int Seed { get; }47 public int Seed { get; private set; } 48 48 49 49 public NguyenFunctionSix() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionTen.cs
r14228 r14229 46 46 protected override int TestPartitionStart { get { return 20; } } 47 47 protected override int TestPartitionEnd { get { return 1020; } } 48 public int Seed { get; }48 public int Seed { get; private set; } 49 49 50 50 public NguyenFunctionTen() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionThree.cs
r14228 r14229 45 45 protected override int TestPartitionStart { get { return 20; } } 46 46 protected override int TestPartitionEnd { get { return 520; } } 47 public int Seed { get; }47 public int Seed { get; private set; } 48 48 49 49 public NguyenFunctionThree() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionTwelve.cs
r14228 r14229 46 46 protected override int TestPartitionStart { get { return 20; } } 47 47 protected override int TestPartitionEnd { get { return 1020; } } 48 public int Seed { get; }48 public int Seed { get; private set; } 49 49 50 50 public NguyenFunctionTwelve() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionTwo.cs
r14228 r14229 45 45 protected override int TestPartitionStart { get { return 20; } } 46 46 protected override int TestPartitionEnd { get { return 520; } } 47 public int Seed { get; }47 public int Seed { get; private set; } 48 48 49 49 public NguyenFunctionTwo() : this((int)System.DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenInstanceProvider.cs
r14228 r14229 38 38 get { return "McDermott et al., 2012 \"Genetic Programming Needs Better Benchmarks\", in Proc. of GECCO 2012."; } 39 39 } 40 public int Seed { get; }40 public int Seed { get; private set; } 41 41 42 42 public NguyenInstanceProvider() : this((int)System.DateTime.Now.Ticks) { }
Note: See TracChangeset
for help on using the changeset viewer.