Changeset 12031 for branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Optimization/3.3/HeuristicLab.Optimization-3.3.csproj
- Timestamp:
- 02/18/15 10:54:32 (10 years ago)
- Location:
- branches/HeuristicLab.DatasetRefactor/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DatasetRefactor/sources
- Property svn:mergeinfo changed
-
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Optimization
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/branches/HLScript/HeuristicLab.Optimization merged eligible /stable/HeuristicLab.Optimization merged eligible /trunk/sources/HeuristicLab.Optimization merged eligible /branches/1721-RandomForestPersistence/HeuristicLab.Optimization 10321-10322 /branches/Algorithms.GradientDescent/HeuristicLab.Optimization 5516-5520 /branches/Benchmarking/sources/HeuristicLab.Optimization 6917-7005 /branches/Classification-Extensions/HeuristicLab.Optimization 11687-11761 /branches/CloningRefactoring/HeuristicLab.Optimization 4656-4721 /branches/CodeEditor/HeuristicLab.Optimization 11700-11806 /branches/DataAnalysis Refactoring/HeuristicLab.Optimization 5471-5808 /branches/DataAnalysis SolutionEnsembles/HeuristicLab.Optimization 5815-6180 /branches/DataAnalysis/HeuristicLab.Optimization 4458-4459,4462,4464 /branches/DataPreprocessing/HeuristicLab.Optimization 10085-11101 /branches/GP.Grammar.Editor/HeuristicLab.Optimization 6284-6795 /branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Optimization 5060 /branches/HeuristicLab.Problems.DataAnalysis.Trading/HeuristicLab.Optimization 6123-9799 /branches/LogResidualEvaluator/HeuristicLab.Optimization 10202-10483 /branches/NET40/sources/HeuristicLab.Optimization 5138-5162 /branches/ParallelEngine/HeuristicLab.Optimization 5175-5192 /branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Optimization 7568-7810 /branches/ProgrammableProblem/HeuristicLab.Optimization 11573-11959 /branches/QAPAlgorithms/HeuristicLab.Optimization 6350-6627 /branches/Restructure trunk solution/HeuristicLab.Optimization 6828 /branches/RuntimeOptimizer/HeuristicLab.Optimization 8943-9078 /branches/ScatterSearch (trunk integration)/HeuristicLab.Optimization 7787-8333 /branches/SlaveShutdown/HeuristicLab.Optimization 8944-8956 /branches/SpectralKernelForGaussianProcesses/HeuristicLab.Optimization 10204-10479 /branches/SuccessProgressAnalysis/HeuristicLab.Optimization 5370-5682 /branches/Trunk/HeuristicLab.Optimization 6829-6865 /branches/UnloadJobs/HeuristicLab.Optimization 9168-9215 /branches/VNS/HeuristicLab.Optimization 5594-5752 /branches/histogram/HeuristicLab.Optimization 5959-6341
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Optimization/3.3/HeuristicLab.Optimization-3.3.csproj
r11300 r12031 11 11 <RootNamespace>HeuristicLab.Optimization</RootNamespace> 12 12 <AssemblyName>HeuristicLab.Optimization-3.3</AssemblyName> 13 <TargetFrameworkVersion>v4. 0</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 14 14 <TargetFrameworkProfile> 15 15 </TargetFrameworkProfile> … … 46 46 <WarningLevel>4</WarningLevel> 47 47 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 48 <Prefer32Bit>false</Prefer32Bit> 48 49 </PropertyGroup> 49 50 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 57 58 </DocumentationFile> 58 59 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 60 <Prefer32Bit>false</Prefer32Bit> 59 61 </PropertyGroup> 60 62 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> … … 66 68 <ErrorReport>prompt</ErrorReport> 67 69 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 70 <Prefer32Bit>false</Prefer32Bit> 68 71 </PropertyGroup> 69 72 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> … … 77 80 <ErrorReport>prompt</ErrorReport> 78 81 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 82 <Prefer32Bit>false</Prefer32Bit> 79 83 </PropertyGroup> 80 84 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> … … 86 90 <ErrorReport>prompt</ErrorReport> 87 91 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 92 <Prefer32Bit>false</Prefer32Bit> 88 93 </PropertyGroup> 89 94 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> … … 97 102 <ErrorReport>prompt</ErrorReport> 98 103 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 104 <Prefer32Bit>false</Prefer32Bit> 99 105 </PropertyGroup> 100 106 <ItemGroup> … … 114 120 </ItemGroup> 115 121 <ItemGroup> 122 <Compile Include="Algorithms\BasicAlgorithm.cs" /> 123 <Compile Include="BasicProblems\BasicProblem.cs" /> 124 <Compile Include="BasicProblems\Encoding.cs" /> 125 <Compile Include="BasicProblems\Individuals\Individual.cs" /> 126 <Compile Include="BasicProblems\Individuals\MultiEncodingIndividual.cs" /> 127 <Compile Include="BasicProblems\Individuals\SingleEncodingIndividual.cs" /> 128 <Compile Include="BasicProblems\Interfaces\IEncoding.cs" /> 129 <Compile Include="BasicProblems\Interfaces\IEncodingOperator.cs" /> 130 <Compile Include="BasicProblems\Interfaces\IMultiEncodingOperator.cs" /> 131 <Compile Include="BasicProblems\Interfaces\IMultiObjectiveProblemDefinition.cs" /> 132 <Compile Include="BasicProblems\Interfaces\internal\IMultiObjectiveAnalysisOperator.cs" /> 133 <Compile Include="BasicProblems\Interfaces\internal\IMultiObjectiveEvaluationOperator.cs" /> 134 <Compile Include="BasicProblems\Interfaces\internal\INeighborBasedOperator.cs" /> 135 <Compile Include="BasicProblems\Interfaces\internal\ISingleObjectiveAnalysisOperator.cs" /> 136 <Compile Include="BasicProblems\Interfaces\internal\ISingleObjectiveEvaluationOperator.cs" /> 137 <Compile Include="BasicProblems\Interfaces\IProblemDefinition.cs" /> 138 <Compile Include="BasicProblems\Interfaces\ISingleObjectiveMoveOperator.cs" /> 139 <Compile Include="BasicProblems\Interfaces\ISingleObjectiveProblemDefinition.cs" /> 140 <Compile Include="BasicProblems\MultiEncoding.cs" /> 141 <Compile Include="BasicProblems\MultiObjectiveBasicProblem.cs" /> 142 <Compile Include="BasicProblems\Operators\MultiEncodingCreator.cs" /> 143 <Compile Include="BasicProblems\Operators\MultiEncodingCrossover.cs" /> 144 <Compile Include="BasicProblems\Operators\MultiEncodingManipulator.cs" /> 145 <Compile Include="BasicProblems\Operators\MultiEncodingOperator.cs" /> 146 <Compile Include="BasicProblems\Operators\MultiObjectiveAnalyzer.cs" /> 147 <Compile Include="BasicProblems\Operators\MultiObjectiveEvaluator.cs" /> 148 <Compile Include="BasicProblems\Operators\SingleObjectiveAnalyzer.cs" /> 149 <Compile Include="BasicProblems\Operators\SingleObjectiveEvaluator.cs" /> 150 <Compile Include="BasicProblems\Operators\SingleObjectiveImprover.cs" /> 151 <Compile Include="BasicProblems\Operators\SingleObjectiveMoveEvaluator.cs" /> 152 <Compile Include="BasicProblems\Operators\SingleObjectiveMoveGenerator.cs" /> 153 <Compile Include="BasicProblems\Operators\SingleObjectiveMoveMaker.cs" /> 154 <Compile Include="BasicProblems\SingleObjectiveBasicProblem.cs" /> 116 155 <Compile Include="Interfaces\ILocalImprovementAlgorithmOperator.cs" /> 156 <Compile Include="Interfaces\IMultiObjectiveOperator.cs" /> 157 <Compile Include="Interfaces\ISingleObjectiveOperator.cs" /> 117 158 <Compile Include="Interfaces\ISingleObjectivePathRelinker.cs" /> 118 159 <Compile Include="Interfaces\ISingleObjectiveImprovementOperator.cs" /> … … 239 280 <Private>False</Private> 240 281 </ProjectReference> 282 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj"> 283 <Project>{23da7ff4-d5b8-41b6-aa96-f0561d24f3ee}</Project> 284 <Name>HeuristicLab.Operators-3.3</Name> 285 <Private>False</Private> 286 </ProjectReference> 241 287 <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj"> 242 288 <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
Note: See TracChangeset
for help on using the changeset viewer.