Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/03/13 20:19:00 (11 years ago)
Author:
sforsten
Message:

#1980:

  • included an adapted version of GA correctly
  • added action set subsumption
  • added deletion after GA and before covering
Location:
branches/LearningClassifierSystems/HeuristicLab.Encodings.ConditionActionEncoding/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/LearningClassifierSystems/HeuristicLab.Encodings.ConditionActionEncoding/3.3

    • Property svn:ignore
      •  

        old new  
        11obj
        22Plugin.cs
         3*.user
  • branches/LearningClassifierSystems/HeuristicLab.Encodings.ConditionActionEncoding/3.3/HeuristicLab.Encodings.ConditionActionEncoding-3.3.csproj

    r9089 r9105  
    7171    <Reference Include="System" />
    7272    <Reference Include="System.Core" />
     73    <Reference Include="System.Drawing" />
    7374    <Reference Include="System.Xml.Linq" />
    7475    <Reference Include="System.Data.DataSetExtensions" />
     
    8384    <Compile Include="ActionSelection\RandomActionSelector.cs" />
    8485    <Compile Include="Covering\CoveringOperator.cs" />
     86    <Compile Include="Covering\DoDeletionBeforeCovering.cs" />
    8587    <Compile Include="Covering\ICovering.cs" />
    8688    <Compile Include="Covering\ICoveringSolutionCreator.cs" />
     89    <Compile Include="Deletion\CalculateNumberOfDeletionsOperator.cs" />
     90    <Compile Include="Deletion\XCSDeletionOperator.cs" />
    8791    <Compile Include="Evaluators\XCSEvaluator.cs" />
    8892    <Compile Include="Evaluators\IConditionActionEvaluator.cs" />
    8993    <Compile Include="Evaluators\IXCSEvaluator.cs" />
     94    <Compile Include="GA\XCSAfterCrossoverOperator.cs" />
    9095    <Compile Include="IClassifier.cs" />
    9196    <Compile Include="Interfaces\IConditionActionProblem.cs" />
    9297    <Compile Include="Interfaces\IConditionActionProblemData.cs" />
    9398    <Compile Include="Operator\CalculateAccuracy.cs" />
     99    <Compile Include="GA\XCSCheckIfGAShouldBeApplied.cs" />
    94100    <Compile Include="Operator\CountNumberOfUniqueActions.cs" />
    95101    <Compile Include="Operator\PredictionArrayCalculator.cs" />
    96102    <Compile Include="Operator\MatchActionOperator.cs" />
    97103    <Compile Include="Operator\MatchConditionOperator.cs" />
     104    <Compile Include="Operator\SubScopeVariableCopier.cs" />
    98105    <Compile Include="Operator\SumAccuracy.cs" />
    99106    <Compile Include="Properties\AssemblyInfo.cs" />
     
    104111    <Compile Include="Selectors\IMatchSelector.cs" />
    105112    <Compile Include="Selectors\MatchSelector.cs" />
     113    <Compile Include="Subsumption\ActionSetSubsumptionoperator.cs" />
     114    <Compile Include="Subsumption\IActionSetSubsumption.cs" />
    106115    <None Include="Properties\AssemblyInfo.cs.frame" />
    107116  </ItemGroup>
     
    112121  <ItemGroup />
    113122  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
     123  <PropertyGroup>
     124    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     125set ProjectDir=$(ProjectDir)
     126set SolutionDir=$(SolutionDir)
     127set Outdir=$(Outdir)
     128
     129call PreBuildEvent.cmd
     130</PreBuildEvent>
     131  </PropertyGroup>
    114132  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    115133       Other similar extension points exist, see Microsoft.Common.targets.
Note: See TracChangeset for help on using the changeset viewer.