- Timestamp:
- 10/12/08 21:54:18 (16 years ago)
- Location:
- branches/GpPluginsRefactoringBranch
- Files:
-
- 5 added
- 5 deleted
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/HeuristicLabGPSantaFePlugin.cs
r641 r651 28 28 [ClassInfo(Name = "HeuristicLab.GP.SantaFe-3.2")] 29 29 [PluginFile(Filename = "HeuristicLab.GP.SantaFe-3.2.dll", Filetype = PluginFileType.Assembly)] 30 [Dependency(Dependency = "HeuristicLab.GP-3.2")] 30 31 [Dependency(Dependency = "HeuristicLab.Core-3.2")] 31 32 [Dependency(Dependency = "HeuristicLab.Data-3.2")] -
branches/GpPluginsRefactoringBranch/HeuristicLab.GP.StructureIdentification.Classification/HeuristicLab.GP.StructureIdentification.Classification.csproj
r646 r651 10 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 11 <RootNamespace>HeuristicLab.GP.Classification</RootNamespace> 12 <AssemblyName>HeuristicLab.GP. Classification</AssemblyName>12 <AssemblyName>HeuristicLab.GP.StructureIdentification.Classification-3.2</AssemblyName> 13 13 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> … … 109 109 <ItemGroup> 110 110 <None Include="HeuristicLab.snk" /> 111 <None Include="Properties\AssemblyInfo.frame" /> 111 112 </ItemGroup> 112 113 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> … … 118 119 </Target> 119 120 --> 121 <PropertyGroup> 122 <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent> 123 </PropertyGroup> 120 124 </Project> -
branches/GpPluginsRefactoringBranch/HeuristicLab.GP.StructureIdentification.Classification/HeuristicLabGPClassificationPlugin.cs
r646 r651 26 26 27 27 namespace HeuristicLab.GP.Classification { 28 [ClassInfo(Name = "HeuristicLab.GP. Classification-3.2")]29 [PluginFile(Filename = "HeuristicLab.GP. Classification-3.2.dll", Filetype = PluginFileType.Assembly)]28 [ClassInfo(Name = "HeuristicLab.GP.StructureIdentification.Classification-3.2")] 29 [PluginFile(Filename = "HeuristicLab.GP.StructureIdentification.Classification-3.2.dll", Filetype = PluginFileType.Assembly)] 30 30 [Dependency(Dependency = "HeuristicLab.Constraints-3.2")] 31 31 [Dependency(Dependency = "HeuristicLab.Core-3.2")] 32 32 [Dependency(Dependency = "HeuristicLab.Data-3.2")] 33 33 [Dependency(Dependency = "HeuristicLab.DataAnalysis-3.2")] 34 [Dependency(Dependency = "HeuristicLab.GP-3.2")] 35 [Dependency(Dependency = "HeuristicLab.GP.StructureIdentification-3.2")] 34 36 [Dependency(Dependency = "HeuristicLab.Operators-3.2")] 35 37 [Dependency(Dependency = "HeuristicLab.Random-3.2")] -
branches/GpPluginsRefactoringBranch/HeuristicLab.GP.StructureIdentification.TimeSeries/FunctionLibraryInjector.cs
r645 r651 40 40 41 41 public override string Description { 42 get { return @"Injects a default function library ."; }42 get { return @"Injects a default function library for time series modeling."; } 43 43 } 44 44 -
branches/GpPluginsRefactoringBranch/HeuristicLab.GP.StructureIdentification.TimeSeries/HeuristicLab.GP.StructureIdentification.TimeSeries.csproj
r646 r651 10 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 11 <RootNamespace>HeuristicLab.GP.TimeSeries</RootNamespace> 12 <AssemblyName>HeuristicLab.GP. TimeSeries</AssemblyName>12 <AssemblyName>HeuristicLab.GP.StructureIdentification.TimeSeries-3.2</AssemblyName> 13 13 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> … … 105 105 <ItemGroup> 106 106 <None Include="HeuristicLab.snk" /> 107 <None Include="Properties\AssemblyInfo.frame" /> 107 108 </ItemGroup> 108 109 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> … … 114 115 </Target> 115 116 --> 117 <PropertyGroup> 118 <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent> 119 </PropertyGroup> 116 120 </Project> -
branches/GpPluginsRefactoringBranch/HeuristicLab.GP.StructureIdentification.TimeSeries/HeuristicLabGPTimeSeriesPlugin.cs
r645 r651 26 26 27 27 namespace HeuristicLab.GP.TimeSeries { 28 [ClassInfo(Name = "HeuristicLab.GP. TimeSeries-3.2")]29 [PluginFile(Filename = "HeuristicLab.GP. TimeSeries-3.2.dll", Filetype = PluginFileType.Assembly)]28 [ClassInfo(Name = "HeuristicLab.GP.StructureIdentification.TimeSeries-3.2")] 29 [PluginFile(Filename = "HeuristicLab.GP.StructureIdentification.TimeSeries-3.2.dll", Filetype = PluginFileType.Assembly)] 30 30 [Dependency(Dependency = "HeuristicLab.Constraints-3.2")] 31 31 [Dependency(Dependency = "HeuristicLab.Core-3.2")] 32 32 [Dependency(Dependency = "HeuristicLab.Data-3.2")] 33 33 [Dependency(Dependency = "HeuristicLab.DataAnalysis-3.2")] 34 [Dependency(Dependency = "HeuristicLab.GP-3.2")] 34 35 [Dependency(Dependency = "HeuristicLab.GP.StructureIdentification-3.2")] 35 36 public class HeuristicLabGPTimeSeriesPlugin : PluginBase { -
branches/GpPluginsRefactoringBranch/HeuristicLab.GP.StructureIdentification/HeuristicLab.GP.StructureIdentification.csproj
r645 r651 10 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 11 <RootNamespace>HeuristicLab.GP.StructureIdentification</RootNamespace> 12 <AssemblyName>HeuristicLab.GP.StructureIdentification </AssemblyName>12 <AssemblyName>HeuristicLab.GP.StructureIdentification-3.2</AssemblyName> 13 13 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> … … 32 32 <ErrorReport>prompt</ErrorReport> 33 33 <WarningLevel>4</WarningLevel> 34 </PropertyGroup> 35 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 36 <DebugSymbols>true</DebugSymbols> 37 <OutputPath>bin\x86\Debug\</OutputPath> 38 <DefineConstants>DEBUG;TRACE</DefineConstants> 39 <DebugType>full</DebugType> 40 <PlatformTarget>x86</PlatformTarget> 41 <ErrorReport>prompt</ErrorReport> 42 </PropertyGroup> 43 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 44 <OutputPath>bin\x86\Release\</OutputPath> 45 <DefineConstants>TRACE</DefineConstants> 46 <Optimize>true</Optimize> 47 <DebugType>pdbonly</DebugType> 48 <PlatformTarget>x86</PlatformTarget> 49 <ErrorReport>prompt</ErrorReport> 34 50 </PropertyGroup> 35 51 <ItemGroup> … … 61 77 <Compile Include="Evaluators\CoefficientOfDeterminationEvaluator.cs" /> 62 78 <Compile Include="Evaluators\EarlyStoppingMeanSquaredErrorEvaluator.cs" /> 79 <Compile Include="Evaluators\GPEvaluatorBase.cs" /> 63 80 <Compile Include="Evaluators\MeanAbsolutePercentageErrorEvaluator.cs" /> 64 81 <Compile Include="Evaluators\MeanSquaredErrorEvaluator.cs" /> … … 66 83 <Compile Include="Evaluators\VarianceAccountedForEvaluator.cs" /> 67 84 <Compile Include="Exponential.cs" /> 68 <Compile Include="GPEvaluatorBase.cs" />69 85 <Compile Include="GreaterThan.cs" /> 70 86 <Compile Include="HeuristicLabGPStructureIdentificationPlugin.cs" /> … … 137 153 <ItemGroup> 138 154 <None Include="HeuristicLab.snk" /> 155 <None Include="Properties\AssemblyInfo.frame" /> 139 156 </ItemGroup> 140 157 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> … … 146 163 </Target> 147 164 --> 165 <PropertyGroup> 166 <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent> 167 </PropertyGroup> 148 168 </Project> -
branches/GpPluginsRefactoringBranch/HeuristicLab.GP.StructureIdentification/HeuristicLabGPStructureIdentificationPlugin.cs
r645 r651 32 32 [Dependency(Dependency = "HeuristicLab.Data-3.2")] 33 33 [Dependency(Dependency = "HeuristicLab.DataAnalysis-3.2")] 34 [Dependency(Dependency = "HeuristicLab.GP-3.2")] 34 35 [Dependency(Dependency = "HeuristicLab.Operators-3.2")] 35 36 [Dependency(Dependency = "HeuristicLab.Random-3.2")] -
branches/GpPluginsRefactoringBranch/HeuristicLab.GP/HeuristicLab.GP.csproj
r645 r651 10 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 11 <RootNamespace>HeuristicLab.GP</RootNamespace> 12 <AssemblyName>HeuristicLab.GP </AssemblyName>12 <AssemblyName>HeuristicLab.GP-3.2</AssemblyName> 13 13 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> … … 32 32 <ErrorReport>prompt</ErrorReport> 33 33 <WarningLevel>4</WarningLevel> 34 </PropertyGroup> 35 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 36 <DebugSymbols>true</DebugSymbols> 37 <OutputPath>bin\x86\Debug\</OutputPath> 38 <DefineConstants>DEBUG;TRACE</DefineConstants> 39 <DebugType>full</DebugType> 40 <PlatformTarget>x86</PlatformTarget> 41 <ErrorReport>prompt</ErrorReport> 42 </PropertyGroup> 43 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 44 <OutputPath>bin\x86\Release\</OutputPath> 45 <DefineConstants>TRACE</DefineConstants> 46 <Optimize>true</Optimize> 47 <DebugType>pdbonly</DebugType> 48 <PlatformTarget>x86</PlatformTarget> 49 <ErrorReport>prompt</ErrorReport> 34 50 </PropertyGroup> 35 51 <ItemGroup> … … 129 145 <ItemGroup> 130 146 <None Include="HeuristicLab.snk" /> 147 <None Include="Properties\AssemblyInfo.frame" /> 131 148 </ItemGroup> 132 149 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> … … 138 155 </Target> 139 156 --> 157 <PropertyGroup> 158 <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent> 159 </PropertyGroup> 140 160 </Project> -
branches/GpPluginsRefactoringBranch/HeuristicLab.GP/HeuristicLabGPPlugin.cs
r645 r651 33 33 [Dependency(Dependency = "HeuristicLab.Operators-3.2")] 34 34 [Dependency(Dependency = "HeuristicLab.Random-3.2")] 35 [Dependency(Dependency = "HeuristicLab.Selection-3.2 )")]35 [Dependency(Dependency = "HeuristicLab.Selection-3.2")] 36 36 public class HeuristicLabGPPlugin : PluginBase { 37 37 } -
branches/GpPluginsRefactoringBranch/HeuristicLab.sln
r645 r651 102 102 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP.StructureIdentification", "HeuristicLab.GP.StructureIdentification\HeuristicLab.GP.StructureIdentification.csproj", "{74223A32-C726-4978-BE78-37113A18373C}" 103 103 EndProject 104 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP.StructureIdentification.Classification", "HeuristicLab.GP. Classification\HeuristicLab.GP.StructureIdentification.Classification.csproj", "{7C20D100-8BEB-433A-9499-F075E2CB9297}"105 EndProject 106 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP.StructureIdentification.TimeSeries", "HeuristicLab.GP. TimeSeries\HeuristicLab.GP.StructureIdentification.TimeSeries.csproj", "{6084CFB5-733F-449D-9F92-2E40D13F0514}"104 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP.StructureIdentification.Classification", "HeuristicLab.GP.StructureIdentification.Classification\HeuristicLab.GP.StructureIdentification.Classification.csproj", "{7C20D100-8BEB-433A-9499-F075E2CB9297}" 105 EndProject 106 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP.StructureIdentification.TimeSeries", "HeuristicLab.GP.StructureIdentification.TimeSeries\HeuristicLab.GP.StructureIdentification.TimeSeries.csproj", "{6084CFB5-733F-449D-9F92-2E40D13F0514}" 107 107 EndProject 108 108 Global … … 461 461 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 462 462 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Debug|Any CPU.Build.0 = Debug|Any CPU 463 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Debug|x86.ActiveCfg = Debug|Any CPU 463 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Debug|x86.ActiveCfg = Debug|x86 464 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Debug|x86.Build.0 = Debug|x86 464 465 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Release|Any CPU.ActiveCfg = Release|Any CPU 465 466 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Release|Any CPU.Build.0 = Release|Any CPU … … 467 468 {74223A32-C726-4978-BE78-37113A18373C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 468 469 {74223A32-C726-4978-BE78-37113A18373C}.Debug|Any CPU.Build.0 = Debug|Any CPU 469 {74223A32-C726-4978-BE78-37113A18373C}.Debug|x86.ActiveCfg = Debug|Any CPU 470 {74223A32-C726-4978-BE78-37113A18373C}.Debug|x86.ActiveCfg = Debug|x86 471 {74223A32-C726-4978-BE78-37113A18373C}.Debug|x86.Build.0 = Debug|x86 470 472 {74223A32-C726-4978-BE78-37113A18373C}.Release|Any CPU.ActiveCfg = Release|Any CPU 471 473 {74223A32-C726-4978-BE78-37113A18373C}.Release|Any CPU.Build.0 = Release|Any CPU … … 473 475 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 474 476 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Debug|Any CPU.Build.0 = Debug|Any CPU 475 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Debug|x86.ActiveCfg = Debug|Any CPU 477 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Debug|x86.ActiveCfg = Debug|x86 478 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Debug|x86.Build.0 = Debug|x86 476 479 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Release|Any CPU.ActiveCfg = Release|Any CPU 477 480 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Release|Any CPU.Build.0 = Release|Any CPU 478 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Release|x86.ActiveCfg = Release|Any CPU 481 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Release|x86.ActiveCfg = Release|x86 482 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Release|x86.Build.0 = Release|x86 479 483 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 480 484 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Debug|Any CPU.Build.0 = Debug|Any CPU 481 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Debug|x86.ActiveCfg = Debug|Any CPU 485 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Debug|x86.ActiveCfg = Debug|x86 486 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Debug|x86.Build.0 = Debug|x86 482 487 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Release|Any CPU.ActiveCfg = Release|Any CPU 483 488 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Release|Any CPU.Build.0 = Release|Any CPU 484 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Release|x86.ActiveCfg = Release|Any CPU 489 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Release|x86.ActiveCfg = Release|x86 490 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Release|x86.Build.0 = Release|x86 485 491 EndGlobalSection 486 492 GlobalSection(SolutionProperties) = preSolution -
branches/GpPluginsRefactoringBranch/HeuristicLab/CopyAssemblies.cmd
r641 r651 28 28 copy %1\HeuristicLab.DistributedEngine\%2\HeuristicLab.DistributedEngine-3.2.dll .\plugins 29 29 copy %1\HeuristicLab.Evolutionary\%2\HeuristicLab.Evolutionary-3.2.dll .\plugins 30 copy %1\HeuristicLab. Functions\%2\HeuristicLab.Functions-3.2.dll .\plugins30 copy %1\HeuristicLab.GP\%2\HeuristicLab.GP-3.2.dll .\plugins 31 31 copy %1\HeuristicLab.GP.SantaFe\%2\HeuristicLab.GP.SantaFe-3.2.dll .\plugins 32 copy %1\HeuristicLab.GP.StructureIdentification\%2\HeuristicLab.GP.StructureIdentification-3.2.dll .\plugins 33 copy %1\HeuristicLab.GP.StructureIdentification.Classification\%2\HeuristicLab.GP.StructureIdentification.Classification-3.2.dll .\plugins 34 copy %1\HeuristicLab.GP.StructureIdentification.TimeSeries\%2\HeuristicLab.GP.StructureIdentification.TimeSeries-3.2.dll .\plugins 32 35 copy %1\HeuristicLab.Grid\%2\HeuristicLab.Grid-3.2.dll .\plugins 33 36 copy %1\HeuristicLab.Logging\%2\HeuristicLab.Logging-3.2.dll .\plugins … … 51 54 copy %1\HeuristicLab.SQLite\"SQLite License.txt" .\plugins 52 55 copy %1\HeuristicLab.SQLite\SQLite.NET.chm .\plugins 53 copy %1\HeuristicLab.StructureIdentification\%2\HeuristicLab.StructureIdentification-3.2.dll .\plugins54 56 copy %1\HeuristicLab.TestFunctions\%2\HeuristicLab.TestFunctions-3.2.dll .\plugins 55 57 copy %1\HeuristicLab.ThreadParallelEngine\%2\HeuristicLab.ThreadParallelEngine-3.2.dll .\plugins
Note: See TracChangeset
for help on using the changeset viewer.