- Timestamp:
- 04/10/13 15:15:13 (12 years ago)
- 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 9 9 <OutputType>Library</OutputType> 10 10 <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> 13 13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> … … 73 73 </ItemGroup> 74 74 <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> 75 81 <Compile Include="XCSModelView.cs"> 76 82 <SubType>UserControl</SubType> … … 98 104 <Private>False</Private> 99 105 </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> 100 114 </ItemGroup> 101 115 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/LearningClassifierSystems/HeuristicLab.Problems.LCS.Views/3.3/Plugin.cs.frame
r9154 r9352 22 22 using HeuristicLab.PluginInfrastructure; 23 23 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)]24 namespace 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)] 27 27 [PluginDependency("HeuristicLab.Collections", "3.3")] 28 28 [PluginDependency("HeuristicLab.Common", "3.3")] … … 33 33 [PluginDependency("HeuristicLab.MainForm", "3.3")] 34 34 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 35 public class HeuristicLabProblems XCSViewsPlugin : PluginBase {35 public class HeuristicLabProblemsLCSViewsPlugin : PluginBase { 36 36 } 37 37 } -
branches/LearningClassifierSystems/HeuristicLab.Problems.LCS.Views/3.3/Properties/AssemblyInfo.cs.frame
r9154 r9352 26 26 // set of attributes. Change these attribute values to modify the information 27 27 // 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")] 30 30 [assembly: AssemblyConfiguration("")] 31 31 [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 22 namespace HeuristicLab.Problems.LCS.Views { 2 23 partial class XCSModelView { 3 24 /// <summary> -
branches/LearningClassifierSystems/HeuristicLab.Problems.LCS.Views/3.3/XCSModelView.cs
r9160 r9352 26 26 using HeuristicLab.MainForm.WindowsForms; 27 27 28 namespace HeuristicLab.Problems. XCS.Views {28 namespace HeuristicLab.Problems.LCS.Views { 29 29 [View("XCS Model")] 30 30 [Content(typeof(XCSModel), true)]
Note: See TracChangeset
for help on using the changeset viewer.