Changeset 14229 for trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva
- Timestamp:
- 08/03/16 08:33:35 (8 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva/KotanchekFunction.cs
r14228 r14229 48 48 protected override int TestPartitionEnd { get { return 100 + (45 * 45); } } 49 49 50 public int Seed { get; }50 public int Seed { get; private set; } 51 51 52 52 public KotanchekFunction() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva/RationalPolynomialThreeDimensional.cs
r14228 r14229 47 47 protected override int TestPartitionStart { get { return 300; } } 48 48 protected override int TestPartitionEnd { get { return 300 + (15 * 12 * 15); } } 49 public int Seed { get; }49 public int Seed { get; private set; } 50 50 51 51 public RationalPolynomialThreeDimensional() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva/RationalPolynomialTwoDimensional.cs
r14228 r14229 48 48 protected override int TestPartitionEnd { get { return 50 + (34 * 34); } } 49 49 50 public int Seed { get; }50 public int Seed { get; private set; } 51 51 52 52 public RationalPolynomialTwoDimensional() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva/RippleFunction.cs
r14228 r14229 46 46 protected override int TestPartitionStart { get { return 300; } } 47 47 protected override int TestPartitionEnd { get { return 300 + 1000; } } 48 public int Seed { get; }48 public int Seed { get; private set; } 49 49 50 50 public RippleFunction() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva/SineCosineFunction.cs
r14228 r14229 47 47 protected override int TestPartitionStart { get { return 30; } } 48 48 protected override int TestPartitionEnd { get { return 30 + (306 * 306); } } 49 public int Seed { get; }49 public int Seed { get; private set; } 50 50 51 51 public SineCosineFunction() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva/UnwrappedBallFunctionFiveDimensional.cs
r14228 r14229 46 46 protected override int TestPartitionStart { get { return 1024; } } 47 47 protected override int TestPartitionEnd { get { return 6024; } } 48 public int Seed { get; }48 public int Seed { get; private set; } 49 49 50 50 public UnwrappedBallFunctionFiveDimensional() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva/VladislavlevaInstanceProvider.cs
r14228 r14229 39 39 } 40 40 41 public int Seed { get; }41 public int Seed { get; private set; } 42 42 43 43 public VladislavlevaInstanceProvider() : this((int)DateTime.Now.Ticks) { }
Note: See TracChangeset
for help on using the changeset viewer.