Changeset 14229
- Timestamp:
- 08/03/16 08:33:35 (8 years ago)
- Location:
- trunk/sources
- Files:
-
- 55 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab 3.3.sln.DotSettings
r8363 r14229 1 1 <wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> 2 <s:String x:Key="/Default/CodeInspection/CSharpLanguageProject/LanguageLevel/@EntryValue">CSharp50</s:String> 2 3 <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/QuickList/=32F5B2BD4CFE0E42ADE73B7FB68EBDD0/Entry/=A4284AC46CC5F44FB8DB9B563AE61B01/@KeyIndexDefined">False</s:Boolean> 3 4 <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/QuickList/=32F5B2BD4CFE0E42ADE73B7FB68EBDD0/Entry/=A4284AC46CC5F44FB8DB9B563AE61B01/EntryName/@EntryValue"></s:String> -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/HeuristicLab.Problems.Instances.DataAnalysis-3.3.csproj
r14228 r14229 24 24 <WarningLevel>4</WarningLevel> 25 25 <Prefer32Bit>false</Prefer32Bit> 26 <LangVersion>5</LangVersion> 26 27 </PropertyGroup> 27 28 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 33 34 <WarningLevel>4</WarningLevel> 34 35 <Prefer32Bit>false</Prefer32Bit> 36 <LangVersion>5</LangVersion> 35 37 </PropertyGroup> 36 38 <PropertyGroup> … … 54 56 <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories> 55 57 <Prefer32Bit>false</Prefer32Bit> 58 <LangVersion>5</LangVersion> 56 59 </PropertyGroup> 57 60 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> … … 71 74 <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules> 72 75 <Prefer32Bit>false</Prefer32Bit> 76 <LangVersion>5</LangVersion> 73 77 </PropertyGroup> 74 78 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> … … 86 90 <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories> 87 91 <Prefer32Bit>false</Prefer32Bit> 92 <LangVersion>5</LangVersion> 88 93 </PropertyGroup> 89 94 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> … … 103 108 <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules> 104 109 <Prefer32Bit>false</Prefer32Bit> 110 <LangVersion>5</LangVersion> 105 111 </PropertyGroup> 106 112 <ItemGroup> -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/FeatureSelection/FeatureSelectionInstanceProvider.cs
r14228 r14229 41 41 get { return ""; } 42 42 } 43 public int Seed { get; }43 public int Seed { get; private set; } 44 44 45 45 public FeatureSelectionInstanceProvider() : base() { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Friedman/FriedmanRandomFunctionInstanceProvider.cs
r14228 r14229 40 40 get { return "Friedman, Jerome H. 'Greedy function approximation: a gradient boosting machine.' Annals of statistics (2001): 1189-1232."; } 41 41 } 42 public int Seed { get; }42 public int Seed { get; private set; } 43 43 44 44 public FriedmanRandomFunctionInstanceProvider() : base() { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionEleven.cs
r14228 r14229 48 48 protected override int TestPartitionStart { get { return 20; } } 49 49 protected override int TestPartitionEnd { get { return 20 + (601 * 601); } } 50 public int Seed { get; }50 public int Seed { get; private set; } 51 51 52 52 public KeijzerFunctionEleven() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionFifteen.cs
r14228 r14229 47 47 protected override int TestPartitionStart { get { return 20; } } 48 48 protected override int TestPartitionEnd { get { return 20 + (601 * 601); } } 49 public int Seed { get; }49 public int Seed { get; private set; } 50 50 51 51 public KeijzerFunctionFifteen() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionFive.cs
r14228 r14229 46 46 protected override int TestPartitionStart { get { return 1000; } } 47 47 protected override int TestPartitionEnd { get { return 11000; } } 48 public int Seed { get; }48 public int Seed { get; private set; } 49 49 50 50 public KeijzerFunctionFive() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionFourteen.cs
r14228 r14229 47 47 protected override int TestPartitionStart { get { return 20; } } 48 48 protected override int TestPartitionEnd { get { return 20 + (601 * 601); } } 49 public int Seed { get; }49 public int Seed { get; private set; } 50 50 51 51 public KeijzerFunctionFourteen() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionTen.cs
r14228 r14229 47 47 protected override int TestPartitionStart { get { return 100; } } 48 48 protected override int TestPartitionEnd { get { return 100 + (101 * 101); } } 49 public int Seed { get; }49 public int Seed { get; private set; } 50 50 51 51 public KeijzerFunctionTen() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionThirteen.cs
r14228 r14229 47 47 protected override int TestPartitionStart { get { return 20; } } 48 48 protected override int TestPartitionEnd { get { return 20 + (601 * 601); } } 49 public int Seed { get; }49 public int Seed { get; private set; } 50 50 51 51 public KeijzerFunctionThirteen() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionTwelve.cs
r14228 r14229 47 47 protected override int TestPartitionStart { get { return 20; } } 48 48 protected override int TestPartitionEnd { get { return 20 + (601 * 601); } } 49 public int Seed { get; }49 public int Seed { get; private set; } 50 50 51 51 public KeijzerFunctionTwelve() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerInstanceProvider.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 KeijzerInstanceProvider() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionEight.cs
r14228 r14229 52 52 protected override int TestPartitionEnd { get { return 20000; } } 53 53 54 public int Seed { get; }54 public int Seed { get; private set; } 55 55 56 56 public KornsFunctionEight() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionEleven.cs
r14228 r14229 50 50 protected override int TestPartitionStart { get { return 10000; } } 51 51 protected override int TestPartitionEnd { get { return 20000; } } 52 public int Seed { get; }52 public int Seed { get; private set; } 53 53 54 54 public KornsFunctionEleven() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionFifteen.cs
r14228 r14229 51 51 protected override int TestPartitionStart { get { return 10000; } } 52 52 protected override int TestPartitionEnd { get { return 20000; } } 53 public int Seed { get; }53 public int Seed { get; private set; } 54 54 55 55 -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionFive.cs
r14228 r14229 51 51 protected override int TestPartitionStart { get { return 10000; } } 52 52 protected override int TestPartitionEnd { get { return 20000; } } 53 public int Seed { get; }53 public int Seed { get; private set; } 54 54 55 55 public KornsFunctionFive() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionFour.cs
r14228 r14229 51 51 protected override int TestPartitionEnd { get { return 20000; } } 52 52 53 public int Seed { get; }53 public int Seed { get; private set; } 54 54 55 55 public KornsFunctionFour() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionFourteen.cs
r14228 r14229 50 50 protected override int TestPartitionStart { get { return 10000; } } 51 51 protected override int TestPartitionEnd { get { return 20000; } } 52 public int Seed { get; }52 public int Seed { get; private set; } 53 53 54 54 public KornsFunctionFourteen() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionNine.cs
r14228 r14229 52 52 protected override int TestPartitionStart { get { return 10000; } } 53 53 protected override int TestPartitionEnd { get { return 20000; } } 54 public int Seed { get; }54 public int Seed { get; private set; } 55 55 56 56 public KornsFunctionNine() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionOne.cs
r14228 r14229 51 51 protected override int TestPartitionStart { get { return 10000; } } 52 52 protected override int TestPartitionEnd { get { return 20000; } } 53 public int Seed { get; }53 public int Seed { get; private set; } 54 54 55 55 public KornsFunctionOne() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionSeven.cs
r14228 r14229 51 51 protected override int TestPartitionStart { get { return 10000; } } 52 52 protected override int TestPartitionEnd { get { return 20000; } } 53 public int Seed { get; }53 public int Seed { get; private set; } 54 54 55 55 public KornsFunctionSeven() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionSix.cs
r14228 r14229 51 51 protected override int TestPartitionStart { get { return 10000; } } 52 52 protected override int TestPartitionEnd { get { return 20000; } } 53 public int Seed { get; }53 public int Seed { get; private set; } 54 54 55 55 public KornsFunctionSix() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionTen.cs
r14228 r14229 50 50 protected override int TestPartitionStart { get { return 10000; } } 51 51 protected override int TestPartitionEnd { get { return 20000; } } 52 public int Seed { get; }52 public int Seed { get; private set; } 53 53 54 54 public KornsFunctionTen() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionThirteen.cs
r14228 r14229 50 50 protected override int TestPartitionStart { get { return 10000; } } 51 51 protected override int TestPartitionEnd { get { return 20000; } } 52 public int Seed { get; }52 public int Seed { get; private set; } 53 53 54 54 public KornsFunctionThirteen() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionThree.cs
r14228 r14229 50 50 protected override int TestPartitionStart { get { return 10000; } } 51 51 protected override int TestPartitionEnd { get { return 20000; } } 52 public int Seed { get; }52 public int Seed { get; private set; } 53 53 54 54 public KornsFunctionThree() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionTwelve.cs
r14228 r14229 50 50 protected override int TestPartitionStart { get { return 10000; } } 51 51 protected override int TestPartitionEnd { get { return 20000; } } 52 public int Seed { get; }52 public int Seed { get; private set; } 53 53 54 54 public KornsFunctionTwelve() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionTwo.cs
r14228 r14229 50 50 protected override int TestPartitionStart { get { return 10000; } } 51 51 protected override int TestPartitionEnd { get { return 20000; } } 52 public int Seed { get; }52 public int Seed { get; private set; } 53 53 54 54 public KornsFunctionTwo() : this((int)System.DateTime.Now.Ticks) { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsInstanceProvider.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 public KornsInstanceProvider() : this((int)System.DateTime.Now.Ticks) { } 42 42 public KornsInstanceProvider(int seed) : base() { -
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) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/VariableNetworks/VariableNetworkInstanceProvider.cs
r14228 r14229 40 40 get { return ""; } 41 41 } 42 public int Seed { get; }42 public int Seed { get; private set; } 43 43 44 44 public VariableNetworkInstanceProvider() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Various/BreimanOne.cs
r14228 r14229 44 44 protected override int TestPartitionEnd { get { return 10001; } } 45 45 46 public int Seed { get; }46 public int Seed { get; private set; } 47 47 48 48 public BreimanOne() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Various/FriedmanOne.cs
r14228 r14229 42 42 protected override int TestPartitionStart { get { return 5000; } } 43 43 protected override int TestPartitionEnd { get { return 10000; } } 44 public int Seed { get; }44 public int Seed { get; private set; } 45 45 46 46 public FriedmanOne() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Various/FriedmanTwo.cs
r14228 r14229 43 43 protected override int TestPartitionEnd { get { return 10000; } } 44 44 45 public int Seed { get; }45 public int Seed { get; private set; } 46 46 47 47 public FriedmanTwo() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Various/PolyTen.cs
r14228 r14229 46 46 protected override int TestPartitionStart { get { return 250; } } 47 47 protected override int TestPartitionEnd { get { return 500; } } 48 public int Seed { get; }48 public int Seed { get; private set; } 49 49 50 50 public PolyTen() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Various/SpatialCoevolution.cs
r14228 r14229 51 51 protected override int TestPartitionStart { get { return 676; } } 52 52 protected override int TestPartitionEnd { get { return 1676; } } 53 public int Seed { get; }53 public int Seed { get; private set; } 54 54 55 55 public SpatialCoevolution() : this((int)DateTime.Now.Ticks) { } -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Various/VariousInstanceProvider.cs
r14228 r14229 38 38 get { return ""; } 39 39 } 40 public int Seed { get; }40 public int Seed { get; private set; } 41 41 42 42 public VariousInstanceProvider() : this((int)DateTime.Now.Ticks) { } -
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.