Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/19/13 10:16:01 (12 years ago)
Author:
sforsten
Message:

#1980:

  • property changes
  • removed Plugin.cs and AssemblyInfo.cs
  • added VariableVectorCVSInstanceProvider
Location:
branches/LearningClassifierSystems/HeuristicLab.Problems.VariableVectorClassification/3.3
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/LearningClassifierSystems/HeuristicLab.Problems.VariableVectorClassification/3.3

    • Property svn:ignore set to
      Plugin.cs
      obj
  • branches/LearningClassifierSystems/HeuristicLab.Problems.VariableVectorClassification/3.3/HeuristicLab.Problems.VariableVectorClassification-3.3.csproj

    r9226 r9228  
    4040    <Reference Include="HeuristicLab.Collections-3.3">
    4141      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Collections-3.3.dll</HintPath>
     42      <Private>False</Private>
    4243    </Reference>
    4344    <Reference Include="HeuristicLab.Common-3.3">
    4445      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
     46      <Private>False</Private>
    4547    </Reference>
    4648    <Reference Include="HeuristicLab.Data-3.3">
    4749      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
     50      <Private>False</Private>
    4851    </Reference>
    4952    <Reference Include="HeuristicLab.Operators-3.3">
    5053      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath>
     54      <Private>False</Private>
    5155    </Reference>
    5256    <Reference Include="HeuristicLab.Optimization-3.3">
    5357      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
     58      <Private>False</Private>
    5459    </Reference>
    5560    <Reference Include="HeuristicLab.Parameters-3.3">
    5661      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
     62      <Private>False</Private>
    5763    </Reference>
    5864    <Reference Include="HeuristicLab.Persistence-3.3">
    5965      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
     66      <Private>False</Private>
    6067    </Reference>
    6168    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
    6269      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
     70      <Private>False</Private>
    6371    </Reference>
    6472    <Reference Include="HeuristicLab.Problems.Instances-3.3">
    6573      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.Instances-3.3.dll</HintPath>
     74      <Private>False</Private>
    6675    </Reference>
    6776    <Reference Include="System" />
     
    8897      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
    8998      <Name>HeuristicLab.Core-3.3</Name>
     99      <Private>False</Private>
    90100    </ProjectReference>
    91101    <ProjectReference Include="..\..\HeuristicLab.Encodings.ConditionActionEncoding\3.3\HeuristicLab.Encodings.ConditionActionEncoding-3.3.csproj">
    92102      <Project>{422FB262-0845-4969-8D16-12F057AA90B1}</Project>
    93103      <Name>HeuristicLab.Encodings.ConditionActionEncoding-3.3</Name>
     104      <Private>False</Private>
    94105    </ProjectReference>
    95106    <ProjectReference Include="..\..\HeuristicLab.Encodings.VariableVector\3.3\HeuristicLab.Encodings.VariableVector-3.3.csproj">
    96107      <Project>{7C116F48-7218-4105-BD6E-EE868E2D4823}</Project>
    97108      <Name>HeuristicLab.Encodings.VariableVector-3.3</Name>
     109      <Private>False</Private>
    98110    </ProjectReference>
    99111    <ProjectReference Include="..\..\HeuristicLab.Problems.ConditionActionClassification\3.3\HeuristicLab.Problems.ConditionActionClassification-3.3.csproj">
    100112      <Project>{EA51D441-F6A3-41E1-9993-A2488E93C222}</Project>
    101113      <Name>HeuristicLab.Problems.ConditionActionClassification-3.3</Name>
     114      <Private>False</Private>
    102115    </ProjectReference>
    103116    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis\3.4\HeuristicLab.Problems.DataAnalysis-3.4.csproj">
    104117      <Project>{DF87C13E-A889-46FF-8153-66DCAA8C5674}</Project>
    105118      <Name>HeuristicLab.Problems.DataAnalysis-3.4</Name>
     119      <Private>False</Private>
    106120    </ProjectReference>
    107121  </ItemGroup>
  • branches/LearningClassifierSystems/HeuristicLab.Problems.VariableVectorClassification/3.3/Properties

    • Property svn:ignore set to
      AssemblyInfo.cs
  • branches/LearningClassifierSystems/HeuristicLab.Problems.VariableVectorClassification/3.3/VariableVectorClassificationProblem.cs

    r9226 r9228  
    9191      Parameters.Add(new FixedValueParameter<ItemSet<VariableVectorAction>>("PossibleActionsConcreteClass", new ItemSet<VariableVectorAction>(ClassifierComparer)));
    9292
    93       coveringSolutionCreator.SampleVariableVectorParameter.Value = problemData.SampleVariableVectorParameter.Value;
     93      coveringSolutionCreator.SampleVariableVectorParameter.ActualName = problemData.SampleVariableVectorParameter.Name;
    9494
    9595      SetProblemDataSpecificParameters();
  • branches/LearningClassifierSystems/HeuristicLab.Problems.VariableVectorClassification/3.3/VariableVectorClassificationProblemData.cs

    r9226 r9228  
    6767    public VariableVectorClassificationProblemData(Dataset dataset, IEnumerable<string> allowedConditionVariables, IEnumerable<string> allowedActionVariables) :
    6868      base(dataset, allowedConditionVariables, allowedActionVariables) {
    69 
    70 
    7169      Parameters.Add(new FixedValueParameter<VariableVector>("SampleVariableVector", "", GenerateSampleVariableVector(dataset, allowedConditionVariables, allowedActionVariables)));
    7270      Parameters.Add(new FixedValueParameter<PercentValue>("SpreadPercentage", "", new PercentValue(0.5)));
Note: See TracChangeset for help on using the changeset viewer.