Free cookie consent management tool by TermsFeed Policy Generator

Changeset 645


Ignore:
Timestamp:
10/12/08 20:53:04 (16 years ago)
Author:
gkronber
Message:

moved all classes of HL.Functions and HL.StructureIdentification to new plugins HeuristicLab.GP... (#177)

Location:
branches/GpPluginsRefactoringBranch
Files:
90 added
2 deleted
18 edited

Legend:

Unmodified
Added
Removed
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.Classification/HeuristicLabGPClassificationPlugin.cs

    r644 r645  
    2525using HeuristicLab.PluginInfrastructure;
    2626
    27 namespace HeuristicLab.Functions {
     27namespace HeuristicLab.GP.Classification {
    2828  [ClassInfo(Name = "HeuristicLab.GP.Classification-3.2")]
    2929  [PluginFile(Filename = "HeuristicLab.GP.Classification-3.2.dll", Filetype = PluginFileType.Assembly)]
     
    3333  [Dependency(Dependency = "HeuristicLab.DataAnalysis-3.2")]
    3434  [Dependency(Dependency = "HeuristicLab.Operators-3.2")]
    35   [Dependency(Dependency = "HeuristicLab.Operators.Programmable-3.2")]
    3635  [Dependency(Dependency = "HeuristicLab.Random-3.2")]
    3736  public class HeuristicLabGPClassificationPlugin : PluginBase {
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/AntInterpreter.cs

    r641 r645  
    2828using System.Xml;
    2929using System.Diagnostics;
    30 using HeuristicLab.Functions;
    3130
    3231namespace HeuristicLab.GP.SantaFe {
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/Evaluator.cs

    r641 r645  
    2626using HeuristicLab.Core;
    2727using HeuristicLab.Data;
    28 using HeuristicLab.Functions;
    2928using HeuristicLab.DataAnalysis;
    3029
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/FunctionLibraryInjector.cs

    r641 r645  
    2828using HeuristicLab.DataAnalysis;
    2929using HeuristicLab.Constraints;
    30 using HeuristicLab.StructureIdentification;
    31 using HeuristicLab.Functions;
    3230
    3331namespace HeuristicLab.GP.SantaFe {
     
    8280    }
    8381
    84     private void SetAllowedSubOperators(HeuristicLab.Functions.IFunction f, HeuristicLab.Functions.IFunction[] gs) {
     82    private void SetAllowedSubOperators(IFunction f, IFunction[] gs) {
    8583      foreach(IConstraint c in f.Constraints) {
    8684        if(c is SubOperatorTypeConstraint) {
    8785          SubOperatorTypeConstraint typeConstraint = c as SubOperatorTypeConstraint;
    8886          typeConstraint.Clear();
    89           foreach(HeuristicLab.Functions.IFunction g in gs) {
     87          foreach(IFunction g in gs) {
    9088            typeConstraint.AddOperator(g);
    9189          }
     
    9391          AllSubOperatorsTypeConstraint typeConstraint = c as AllSubOperatorsTypeConstraint;
    9492          typeConstraint.Clear();
    95           foreach(HeuristicLab.Functions.IFunction g in gs) {
     93          foreach(IFunction g in gs) {
    9694            typeConstraint.AddOperator(g);
    9795          }
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/HeuristicLab.GP.SantaFe.csproj

    r641 r645  
    9595      <Name>HeuristicLab.Data</Name>
    9696    </ProjectReference>
    97     <ProjectReference Include="..\HeuristicLab.Functions\HeuristicLab.Functions.csproj">
    98       <Project>{B95CA6E2-34BC-4430-994D-BD6E99375319}</Project>
    99       <Name>HeuristicLab.Functions</Name>
     97    <ProjectReference Include="..\HeuristicLab.GP\HeuristicLab.GP.csproj">
     98      <Project>{1F1CF3ED-374C-4288-995B-93F6B872F571}</Project>
     99      <Name>HeuristicLab.GP</Name>
    100100    </ProjectReference>
    101101    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
     
    106106      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
    107107      <Name>HeuristicLab.Random</Name>
    108     </ProjectReference>
    109     <ProjectReference Include="..\HeuristicLab.StructureIdentification\HeuristicLab.StructureIdentification.csproj">
    110       <Project>{5948F299-0A5E-43B9-8F17-2D15298EEC34}</Project>
    111       <Name>HeuristicLab.StructureIdentification</Name>
    112108    </ProjectReference>
    113109  </ItemGroup>
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/IfFoodAhead.cs

    r641 r645  
    2929using HeuristicLab.DataAnalysis;
    3030using HeuristicLab.Random;
    31 using HeuristicLab.Functions;
    3231
    3332namespace HeuristicLab.GP.SantaFe {
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/Left.cs

    r641 r645  
    2929using HeuristicLab.DataAnalysis;
    3030using HeuristicLab.Random;
    31 using HeuristicLab.Functions;
    3231
    3332namespace HeuristicLab.GP.SantaFe {
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/Move.cs

    r641 r645  
    2929using HeuristicLab.DataAnalysis;
    3030using HeuristicLab.Random;
    31 using HeuristicLab.Functions;
    3231
    3332namespace HeuristicLab.GP.SantaFe {
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/Prog2.cs

    r641 r645  
    2929using HeuristicLab.DataAnalysis;
    3030using HeuristicLab.Random;
    31 using HeuristicLab.Functions;
    3231
    3332namespace HeuristicLab.GP.SantaFe {
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/Prog3.cs

    r641 r645  
    2929using HeuristicLab.DataAnalysis;
    3030using HeuristicLab.Random;
    31 using HeuristicLab.Functions;
    3231
    3332namespace HeuristicLab.GP.SantaFe {
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/Right.cs

    r641 r645  
    2929using HeuristicLab.DataAnalysis;
    3030using HeuristicLab.Random;
    31 using HeuristicLab.Functions;
    3231
    3332namespace HeuristicLab.GP.SantaFe {
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.SantaFe/SymbolTable.cs

    r641 r645  
    2626using HeuristicLab.Core;
    2727using System.Xml;
    28 using HeuristicLab.Functions;
    2928
    3029namespace HeuristicLab.GP.SantaFe {
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.StructureIdentification/HeuristicLab.GP.StructureIdentification.csproj

    r644 r645  
    66    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    8     <ProjectGuid>90009248-a629-498a-b036-f504ce4f81bb</ProjectGuid>
     8    <ProjectGuid>{74223A32-C726-4978-BE78-37113A18373C}</ProjectGuid>
    99    <OutputType>Library</OutputType>
    1010    <AppDesignerFolder>Properties</AppDesignerFolder>
     
    1313    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
    1414    <FileAlignment>512</FileAlignment>
     15    <SignAssembly>true</SignAssembly>
     16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
    1517  </PropertyGroup>
    1618  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     
    3638      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    3739    </Reference>
     40    <Reference Include="System.Drawing" />
     41    <Reference Include="System.Windows.Forms" />
    3842    <Reference Include="System.Xml.Linq">
    3943      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    4650  </ItemGroup>
    4751  <ItemGroup>
    48     <Compile Include="Class1.cs" />
     52    <Compile Include="Addition.cs" />
     53    <Compile Include="And.cs" />
     54    <Compile Include="Average.cs" />
     55    <Compile Include="BakedTreeEvaluator.cs" />
     56    <Compile Include="Constant.cs" />
     57    <Compile Include="Cosinus.cs" />
     58    <Compile Include="Differential.cs" />
     59    <Compile Include="Division.cs" />
     60    <Compile Include="Equal.cs" />
     61    <Compile Include="Evaluators\CoefficientOfDeterminationEvaluator.cs" />
     62    <Compile Include="Evaluators\EarlyStoppingMeanSquaredErrorEvaluator.cs" />
     63    <Compile Include="Evaluators\MeanAbsolutePercentageErrorEvaluator.cs" />
     64    <Compile Include="Evaluators\MeanSquaredErrorEvaluator.cs" />
     65    <Compile Include="Evaluators\SimpleEvaluator.cs" />
     66    <Compile Include="Evaluators\VarianceAccountedForEvaluator.cs" />
     67    <Compile Include="Exponential.cs" />
     68    <Compile Include="GPEvaluatorBase.cs" />
     69    <Compile Include="GreaterThan.cs" />
     70    <Compile Include="HeuristicLabGPStructureIdentificationPlugin.cs" />
     71    <Compile Include="IfThenElse.cs" />
     72    <Compile Include="LessThan.cs" />
     73    <Compile Include="Logarithm.cs" />
     74    <Compile Include="ModelAnalyzerExporter.cs" />
     75    <Compile Include="Multiplication.cs" />
     76    <Compile Include="Not.cs" />
     77    <Compile Include="Or.cs" />
     78    <Compile Include="Power.cs" />
    4979    <Compile Include="Properties\AssemblyInfo.cs" />
     80    <Compile Include="Signum.cs" />
     81    <Compile Include="Sinus.cs" />
     82    <Compile Include="Sqrt.cs" />
     83    <Compile Include="StructIdProblemInjector.cs" />
     84    <Compile Include="StructIdProblemInjectorView.cs">
     85      <SubType>UserControl</SubType>
     86    </Compile>
     87    <Compile Include="StructIdProblemInjectorView.Designer.cs">
     88      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
     89    </Compile>
     90    <Compile Include="Subtraction.cs" />
     91    <Compile Include="SymbolicExpressionExporter.cs" />
     92    <Compile Include="SymbolTable.cs" />
     93    <Compile Include="Tangens.cs" />
     94    <Compile Include="Variable.cs" />
     95    <Compile Include="Xor.cs" />
     96  </ItemGroup>
     97  <ItemGroup>
     98    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
     99      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
     100      <Name>HeuristicLab.Constraints</Name>
     101    </ProjectReference>
     102    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
     103      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
     104      <Name>HeuristicLab.Core</Name>
     105    </ProjectReference>
     106    <ProjectReference Include="..\HeuristicLab.DataAnalysis\HeuristicLab.DataAnalysis.csproj">
     107      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
     108      <Name>HeuristicLab.DataAnalysis</Name>
     109    </ProjectReference>
     110    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
     111      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
     112      <Name>HeuristicLab.Data</Name>
     113    </ProjectReference>
     114    <ProjectReference Include="..\HeuristicLab.GP\HeuristicLab.GP.csproj">
     115      <Project>{1F1CF3ED-374C-4288-995B-93F6B872F571}</Project>
     116      <Name>HeuristicLab.GP</Name>
     117    </ProjectReference>
     118    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
     119      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
     120      <Name>HeuristicLab.Operators</Name>
     121    </ProjectReference>
     122    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
     123      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
     124      <Name>HeuristicLab.PluginInfrastructure</Name>
     125    </ProjectReference>
     126    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
     127      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
     128      <Name>HeuristicLab.Random</Name>
     129    </ProjectReference>
     130  </ItemGroup>
     131  <ItemGroup>
     132    <EmbeddedResource Include="StructIdProblemInjectorView.resx">
     133      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
     134      <SubType>Designer</SubType>
     135    </EmbeddedResource>
     136  </ItemGroup>
     137  <ItemGroup>
     138    <None Include="HeuristicLab.snk" />
    50139  </ItemGroup>
    51140  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP.StructureIdentification/HeuristicLabGPStructureIdentificationPlugin.cs

    r644 r645  
    2525using HeuristicLab.PluginInfrastructure;
    2626
    27 namespace HeuristicLab.Functions {
     27namespace HeuristicLab.GP.StructureIdentification {
    2828  [ClassInfo(Name = "HeuristicLab.GP.StructureIdentification-3.2")]
    2929  [PluginFile(Filename = "HeuristicLab.GP.StructureIdentification-3.2.dll", Filetype = PluginFileType.Assembly)]
     
    3333  [Dependency(Dependency = "HeuristicLab.DataAnalysis-3.2")]
    3434  [Dependency(Dependency = "HeuristicLab.Operators-3.2")]
    35   [Dependency(Dependency = "HeuristicLab.Operators.Programmable-3.2")]
    3635  [Dependency(Dependency = "HeuristicLab.Random-3.2")]
    3736  public class HeuristicLabGPStructureIdentificationPlugin : PluginBase {
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP/HeuristicLab.GP.csproj

    r644 r645  
    66    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    8     <ProjectGuid>6c2c78cb-15a4-4e47-a252-8c54c510cae6</ProjectGuid>
     8    <ProjectGuid>{1F1CF3ED-374C-4288-995B-93F6B872F571}</ProjectGuid>
    99    <OutputType>Library</OutputType>
    1010    <AppDesignerFolder>Properties</AppDesignerFolder>
     
    1313    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
    1414    <FileAlignment>512</FileAlignment>
     15    <SignAssembly>true</SignAssembly>
     16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
    1517  </PropertyGroup>
    1618  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     
    3638      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    3739    </Reference>
     40    <Reference Include="System.Drawing" />
     41    <Reference Include="System.Windows.Forms" />
    3842    <Reference Include="System.Xml.Linq">
    3943      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    4650  </ItemGroup>
    4751  <ItemGroup>
    48     <Compile Include="Class1.cs" />
     52    <Compile Include="BakedFunctionTree.cs" />
     53    <Compile Include="FunctionBase.cs" />
     54    <Compile Include="FunctionView.cs">
     55      <SubType>UserControl</SubType>
     56    </Compile>
     57    <Compile Include="FunctionView.Designer.cs">
     58      <DependentUpon>FunctionView.cs</DependentUpon>
     59    </Compile>
     60    <Compile Include="GPOperatorGroup.cs" />
     61    <Compile Include="GPOperatorLibrary.cs" />
     62    <Compile Include="GPOperatorLibraryEditor.cs">
     63      <SubType>UserControl</SubType>
     64    </Compile>
     65    <Compile Include="GPOperatorLibraryEditor.Designer.cs">
     66      <DependentUpon>GPOperatorLibraryEditor.cs</DependentUpon>
     67    </Compile>
     68    <Compile Include="HeuristicLabGPPlugin.cs" />
     69    <Compile Include="IFunction.cs" />
     70    <Compile Include="IFunctionTree.cs" />
     71    <Compile Include="IFunctionVisitor.cs">
     72      <SubType>Code</SubType>
     73    </Compile>
     74    <Compile Include="Manipulation\ChangeNodeTypeManipulation.cs" />
     75    <Compile Include="Manipulation\CutOutNodeManipulation.cs" />
     76    <Compile Include="Manipulation\DeleteSubTreeManipulation.cs" />
     77    <Compile Include="Manipulation\FullTreeShaker.cs" />
     78    <Compile Include="Manipulation\OnePointShaker.cs" />
     79    <Compile Include="Manipulation\SubstituteSubTreeManipulation.cs" />
     80    <Compile Include="ProbabilisticTreeCreator.cs" />
    4981    <Compile Include="Properties\AssemblyInfo.cs" />
     82    <Compile Include="RampedTreeCreator.cs" />
     83    <Compile Include="Recombination\LangdonHomologousCrossOver.cs" />
     84    <Compile Include="Recombination\OnePointCrossOver.cs" />
     85    <Compile Include="Recombination\SizeFairCrossOver.cs" />
     86    <Compile Include="Recombination\StandardCrossOver.cs" />
     87    <Compile Include="TreeGardener.cs" />
     88  </ItemGroup>
     89  <ItemGroup>
     90    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
     91      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
     92      <Name>HeuristicLab.Constraints</Name>
     93    </ProjectReference>
     94    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
     95      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
     96      <Name>HeuristicLab.Core</Name>
     97    </ProjectReference>
     98    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
     99      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
     100      <Name>HeuristicLab.Data</Name>
     101    </ProjectReference>
     102    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
     103      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
     104      <Name>HeuristicLab.Operators</Name>
     105    </ProjectReference>
     106    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
     107      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
     108      <Name>HeuristicLab.PluginInfrastructure</Name>
     109    </ProjectReference>
     110    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
     111      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
     112      <Name>HeuristicLab.Random</Name>
     113    </ProjectReference>
     114    <ProjectReference Include="..\HeuristicLab.Selection\HeuristicLab.Selection.csproj">
     115      <Project>{F7CF0571-25CB-43D5-8443-0843A1E2861A}</Project>
     116      <Name>HeuristicLab.Selection</Name>
     117    </ProjectReference>
     118  </ItemGroup>
     119  <ItemGroup>
     120    <EmbeddedResource Include="FunctionView.resx">
     121      <DependentUpon>FunctionView.cs</DependentUpon>
     122      <SubType>Designer</SubType>
     123    </EmbeddedResource>
     124    <EmbeddedResource Include="GPOperatorLibraryEditor.resx">
     125      <DependentUpon>GPOperatorLibraryEditor.cs</DependentUpon>
     126      <SubType>Designer</SubType>
     127    </EmbeddedResource>
     128  </ItemGroup>
     129  <ItemGroup>
     130    <None Include="HeuristicLab.snk" />
    50131  </ItemGroup>
    51132  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • branches/GpPluginsRefactoringBranch/HeuristicLab.GP/HeuristicLabGPPlugin.cs

    r644 r645  
    3131  [Dependency(Dependency = "HeuristicLab.Core-3.2")]
    3232  [Dependency(Dependency = "HeuristicLab.Data-3.2")]
    33   [Dependency(Dependency = "HeuristicLab.DataAnalysis-3.2")]
    3433  [Dependency(Dependency = "HeuristicLab.Operators-3.2")]
    35   [Dependency(Dependency = "HeuristicLab.Operators.Programmable-3.2")]
    3634  [Dependency(Dependency = "HeuristicLab.Random-3.2")]
     35  [Dependency(Dependency = "HeuristicLab.Selection-3.2)")]
    3736  public class HeuristicLabGPPlugin : PluginBase {
    3837  }
  • branches/GpPluginsRefactoringBranch/HeuristicLab.Scheduling.JSSP/HeuristicLab.Scheduling.JSSP.csproj

    r582 r645  
    33    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    44    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    5     <ProductVersion>9.0.30729</ProductVersion>
     5    <ProductVersion>9.0.21022</ProductVersion>
    66    <SchemaVersion>2.0</SchemaVersion>
    77    <ProjectGuid>{4C0EF782-CC94-4A94-BC3E-661D2600559B}</ProjectGuid>
     
    119119      <Name>HeuristicLab.Data</Name>
    120120    </ProjectReference>
    121     <ProjectReference Include="..\HeuristicLab.Functions\HeuristicLab.Functions.csproj">
    122       <Project>{B95CA6E2-34BC-4430-994D-BD6E99375319}</Project>
    123       <Name>HeuristicLab.Functions</Name>
    124     </ProjectReference>
    125121    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
    126122      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
  • branches/GpPluginsRefactoringBranch/HeuristicLab.sln

    r641 r645  
    4444Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Charting.Data", "HeuristicLab.Charting.Data\HeuristicLab.Charting.Data.csproj", "{E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}"
    4545EndProject
    46 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Functions", "HeuristicLab.Functions\HeuristicLab.Functions.csproj", "{B95CA6E2-34BC-4430-994D-BD6E99375319}"
    47 EndProject
    4846Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Operators.Programmable", "HeuristicLab.Operators.Programmable\HeuristicLab.Operators.Programmable.csproj", "{E3CCBFC6-900C-41B6-AFB8-6646DB097435}"
    4947EndProject
    5048Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.SGA", "HeuristicLab.SGA\HeuristicLab.SGA.csproj", "{E39AF78A-9692-472B-B061-E2F1B1AB2C92}"
    5149EndProject
    52 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.StructureIdentification", "HeuristicLab.StructureIdentification\HeuristicLab.StructureIdentification.csproj", "{5948F299-0A5E-43B9-8F17-2D15298EEC34}"
    53 EndProject
    5450Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Constraints", "HeuristicLab.Constraints\HeuristicLab.Constraints.csproj", "{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}"
    5551EndProject
     
    10197EndProject
    10298Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP.SantaFe", "HeuristicLab.GP.SantaFe\HeuristicLab.GP.SantaFe.csproj", "{1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}"
     99EndProject
     100Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP", "HeuristicLab.GP\HeuristicLab.GP.csproj", "{1F1CF3ED-374C-4288-995B-93F6B872F571}"
     101EndProject
     102Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP.StructureIdentification", "HeuristicLab.GP.StructureIdentification\HeuristicLab.GP.StructureIdentification.csproj", "{74223A32-C726-4978-BE78-37113A18373C}"
     103EndProject
     104Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP.StructureIdentification.Classification", "HeuristicLab.GP.Classification\HeuristicLab.GP.StructureIdentification.Classification.csproj", "{7C20D100-8BEB-433A-9499-F075E2CB9297}"
     105EndProject
     106Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP.StructureIdentification.TimeSeries", "HeuristicLab.GP.TimeSeries\HeuristicLab.GP.StructureIdentification.TimeSeries.csproj", "{6084CFB5-733F-449D-9F92-2E40D13F0514}"
    103107EndProject
    104108Global
     
    252256    {E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}.Release|x86.ActiveCfg = Release|x86
    253257    {E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}.Release|x86.Build.0 = Release|x86
    254     {B95CA6E2-34BC-4430-994D-BD6E99375319}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    255     {B95CA6E2-34BC-4430-994D-BD6E99375319}.Debug|Any CPU.Build.0 = Debug|Any CPU
    256     {B95CA6E2-34BC-4430-994D-BD6E99375319}.Debug|x86.ActiveCfg = Debug|x86
    257     {B95CA6E2-34BC-4430-994D-BD6E99375319}.Debug|x86.Build.0 = Debug|x86
    258     {B95CA6E2-34BC-4430-994D-BD6E99375319}.Release|Any CPU.ActiveCfg = Release|Any CPU
    259     {B95CA6E2-34BC-4430-994D-BD6E99375319}.Release|Any CPU.Build.0 = Release|Any CPU
    260     {B95CA6E2-34BC-4430-994D-BD6E99375319}.Release|x86.ActiveCfg = Release|x86
    261     {B95CA6E2-34BC-4430-994D-BD6E99375319}.Release|x86.Build.0 = Release|x86
    262258    {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    263259    {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Debug|Any CPU.Build.0 = Debug|Any CPU
     
    276272    {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Release|x86.ActiveCfg = Release|x86
    277273    {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Release|x86.Build.0 = Release|x86
    278     {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    279     {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Debug|Any CPU.Build.0 = Debug|Any CPU
    280     {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Debug|x86.ActiveCfg = Debug|x86
    281     {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Debug|x86.Build.0 = Debug|x86
    282     {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Release|Any CPU.ActiveCfg = Release|Any CPU
    283     {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Release|Any CPU.Build.0 = Release|Any CPU
    284     {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Release|x86.ActiveCfg = Release|x86
    285     {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Release|x86.Build.0 = Release|x86
    286274    {FCD62C6F-4793-4593-AE9A-0BDCA256EE99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    287275    {FCD62C6F-4793-4593-AE9A-0BDCA256EE99}.Debug|Any CPU.Build.0 = Debug|Any CPU
     
    471459    {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.Release|x86.ActiveCfg = Release|x86
    472460    {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.Release|x86.Build.0 = Release|x86
     461    {1F1CF3ED-374C-4288-995B-93F6B872F571}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     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
     464    {1F1CF3ED-374C-4288-995B-93F6B872F571}.Release|Any CPU.ActiveCfg = Release|Any CPU
     465    {1F1CF3ED-374C-4288-995B-93F6B872F571}.Release|Any CPU.Build.0 = Release|Any CPU
     466    {1F1CF3ED-374C-4288-995B-93F6B872F571}.Release|x86.ActiveCfg = Release|Any CPU
     467    {74223A32-C726-4978-BE78-37113A18373C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     468    {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}.Release|Any CPU.ActiveCfg = Release|Any CPU
     471    {74223A32-C726-4978-BE78-37113A18373C}.Release|Any CPU.Build.0 = Release|Any CPU
     472    {74223A32-C726-4978-BE78-37113A18373C}.Release|x86.ActiveCfg = Release|Any CPU
     473    {7C20D100-8BEB-433A-9499-F075E2CB9297}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     474    {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
     476    {7C20D100-8BEB-433A-9499-F075E2CB9297}.Release|Any CPU.ActiveCfg = Release|Any CPU
     477    {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
     479    {6084CFB5-733F-449D-9F92-2E40D13F0514}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     480    {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
     482    {6084CFB5-733F-449D-9F92-2E40D13F0514}.Release|Any CPU.ActiveCfg = Release|Any CPU
     483    {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
    473485  EndGlobalSection
    474486  GlobalSection(SolutionProperties) = preSolution
Note: See TracChangeset for help on using the changeset viewer.