Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/10/13 15:15:13 (12 years ago)
Author:
sforsten
Message:

#1980:

  • added DecisionListView
  • added event handlers in *ProblemData
  • renamed project Problems.XCS.Views to Problems.lCS.Views and Problems.Instances.ConditionActionClassification to Problems.Instances.LCS
  • integrated niching in GAssist and added NichingTournamentSelector
  • minor code improvements and property changes
Location:
branches/LearningClassifierSystems/HeuristicLab.Problems.LCS.Views
Files:
2 added
1 deleted
4 edited
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • branches/LearningClassifierSystems/HeuristicLab.Problems.LCS.Views/3.3/HeuristicLab.Problems.LCS.Views-3.3.csproj

    r9345 r9352  
    99    <OutputType>Library</OutputType>
    1010    <AppDesignerFolder>Properties</AppDesignerFolder>
    11     <RootNamespace>HeuristicLab.Problems.XCS.Views</RootNamespace>
    12     <AssemblyName>HeuristicLab.Problems.XCS.Views-3.3</AssemblyName>
     11    <RootNamespace>HeuristicLab.Problems.LCS.Views</RootNamespace>
     12    <AssemblyName>HeuristicLab.Problems.LCS.Views-3.3</AssemblyName>
    1313    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
    1414    <FileAlignment>512</FileAlignment>
     
    7373  </ItemGroup>
    7474  <ItemGroup>
     75    <Compile Include="DecisionListView.cs">
     76      <SubType>UserControl</SubType>
     77    </Compile>
     78    <Compile Include="DecisionListView.Designer.cs">
     79      <DependentUpon>DecisionListView.cs</DependentUpon>
     80    </Compile>
    7581    <Compile Include="XCSModelView.cs">
    7682      <SubType>UserControl</SubType>
     
    98104      <Private>False</Private>
    99105    </ProjectReference>
     106    <ProjectReference Include="..\..\HeuristicLab.Encodings.DecisionList\3.3\HeuristicLab.Encodings.DecisionList-3.3.csproj">
     107      <Project>{86912e6b-4ef3-4b37-809b-5a7c4a28d0c9}</Project>
     108      <Name>HeuristicLab.Encodings.DecisionList-3.3</Name>
     109    </ProjectReference>
     110    <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators.LCS\3.3\HeuristicLab.Optimization.Operators.LCS-3.3.csproj">
     111      <Project>{f2c6d3b0-bd4f-4747-b13e-b18e53a2a09d}</Project>
     112      <Name>HeuristicLab.Optimization.Operators.LCS-3.3</Name>
     113    </ProjectReference>
    100114  </ItemGroup>
    101115  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • branches/LearningClassifierSystems/HeuristicLab.Problems.LCS.Views/3.3/Plugin.cs.frame

    r9154 r9352  
    2222using HeuristicLab.PluginInfrastructure;
    2323
    24 namespace HeuristicLab.Problems.ConditionActionClassification {
    25   [Plugin("HeuristicLab.Problems.XCS.Views", "3.3.7.$WCREV$")]
    26   [PluginFile("HeuristicLab.Problems.XCS.Views-3.3.dll", PluginFileType.Assembly)]
     24namespace HeuristicLab.Problems.LCS.Views {
     25  [Plugin("HeuristicLab.Problems.LCS.Views", "3.3.7.$WCREV$")]
     26  [PluginFile("HeuristicLab.Problems.LCS.Views-3.3.dll", PluginFileType.Assembly)]
    2727  [PluginDependency("HeuristicLab.Collections", "3.3")]
    2828  [PluginDependency("HeuristicLab.Common", "3.3")]
     
    3333  [PluginDependency("HeuristicLab.MainForm", "3.3")]
    3434  [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]
    35   public class HeuristicLabProblemsXCSViewsPlugin : PluginBase {
     35  public class HeuristicLabProblemsLCSViewsPlugin : PluginBase {
    3636  }
    3737}
  • branches/LearningClassifierSystems/HeuristicLab.Problems.LCS.Views/3.3/Properties/AssemblyInfo.cs.frame

    r9154 r9352  
    2626// set of attributes. Change these attribute values to modify the information
    2727// associated with an assembly.
    28 [assembly: AssemblyTitle("HeuristicLab.Problems.XCS.Views-3.3")]
    29 [assembly: AssemblyDescription("Views for XCS problems")]
     28[assembly: AssemblyTitle("HeuristicLab.Problems.LCS.Views-3.3")]
     29[assembly: AssemblyDescription("Views for LCS problems")]
    3030[assembly: AssemblyConfiguration("")]
    3131[assembly: AssemblyCompany("HEAL")]
  • branches/LearningClassifierSystems/HeuristicLab.Problems.LCS.Views/3.3/XCSModelView.Designer.cs

    r9154 r9352  
    1 namespace HeuristicLab.Problems.XCS.Views {
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 *
     5 * This file is part of HeuristicLab.
     6 *
     7 * HeuristicLab is free software: you can redistribute it and/or modify
     8 * it under the terms of the GNU General Public License as published by
     9 * the Free Software Foundation, either version 3 of the License, or
     10 * (at your option) any later version.
     11 *
     12 * HeuristicLab is distributed in the hope that it will be useful,
     13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 * GNU General Public License for more details.
     16 *
     17 * You should have received a copy of the GNU General Public License
     18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
     19 */
     20#endregion
     21
     22namespace HeuristicLab.Problems.LCS.Views {
    223  partial class XCSModelView {
    324    /// <summary>
  • branches/LearningClassifierSystems/HeuristicLab.Problems.LCS.Views/3.3/XCSModelView.cs

    r9160 r9352  
    2626using HeuristicLab.MainForm.WindowsForms;
    2727
    28 namespace HeuristicLab.Problems.XCS.Views {
     28namespace HeuristicLab.Problems.LCS.Views {
    2929  [View("XCS Model")]
    3030  [Content(typeof(XCSModel), true)]
Note: See TracChangeset for help on using the changeset viewer.