Changeset 11848
- Timestamp:
- 02/01/15 19:53:25 (10 years ago)
- Location:
- branches/HeuristicLab.Problems.GrammaticalOptimization
- Files:
-
- 1 added
- 2 edited
- 8 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/HeuristicLab.Algorithms.Bandits.csproj
r11847 r11848 33 33 <Reference Include="ALGLIB-3.7.0"> 34 34 <HintPath>..\..\..\trunk\sources\bin\ALGLIB-3.7.0.dll</HintPath> 35 </Reference>36 <Reference Include="HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3">37 <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3.dll</HintPath>38 35 </Reference> 39 36 <Reference Include="System" /> -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.GrammaticalOptimization.csproj
r11847 r11848 78 78 </ItemGroup> 79 79 <ItemGroup> 80 <Compile Include=" ISymbolicExpressionTreeProblem.cs" />80 <Compile Include="ExpressionInterpreter.cs" /> 81 81 <Compile Include="Feature.cs" /> 82 <Compile Include="Problems\GrammaticalOptimizationEvaluator.cs" /> 83 <Compile Include="Problems\IGrammaticalOptimizationEvaluator.cs" /> 84 <Compile Include="Problems\GenericSymbExprProblem.cs" /> 85 <Compile Include="Problems\GenericSymbExprGrammar.cs" /> 82 <Compile Include="Interfaces\IGrammar.cs" /> 83 <Compile Include="Interfaces\IProblem.cs" /> 86 84 <Compile Include="Problems\EvenParityProblem.cs" /> 87 <Compile Include="Problems\ExpressionInterpreter.cs" />88 85 <Compile Include="Problems\FindPhrasesProblem.cs" /> 89 86 <Compile Include="Problems\HardPalindromeProblem.cs" /> … … 101 98 <Compile Include="SentenceSetStatistics.cs" /> 102 99 <Compile Include="Sequence.cs" /> 103 <Compile Include="IProblem.cs" />104 <Compile Include="IGrammar.cs" />105 100 <Compile Include="Properties\AssemblyInfo.cs" /> 101 <Compile Include="TreeRepresentation\GenericSymbExprGrammar.cs" /> 102 <Compile Include="TreeRepresentation\GenericSymbExprProblem.cs" /> 103 <Compile Include="TreeRepresentation\GrammaticalOptimizationEvaluator.cs" /> 104 <Compile Include="TreeRepresentation\IGrammaticalOptimizationEvaluator.cs" /> 105 <Compile Include="TreeRepresentation\ISymbolicExpressionTreeProblem.cs" /> 106 106 </ItemGroup> 107 107 <ItemGroup> … … 111 111 </ProjectReference> 112 112 </ItemGroup> 113 <ItemGroup> 114 <Folder Include="TreeRepresentation\" /> 115 </ItemGroup> 113 <ItemGroup /> 116 114 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 117 115 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.