Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/14/10 05:31:49 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on operators
Location:
trunk/sources/HeuristicLab.Evolutionary/3.3
Files:
1 added
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Evolutionary/3.3/HeuristicLab.Evolutionary-3.3.csproj

    r2790 r2794  
    8484    <Compile Include="HeuristicLabEvolutionaryPlugin.cs" />
    8585    <Compile Include="Properties\AssemblyInfo.cs" />
     86    <Compile Include="ChildrenCreator.cs" />
    8687  </ItemGroup>
    8788  <ItemGroup>
     
    9091  </ItemGroup>
    9192  <ItemGroup>
     93    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
     94      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
     95      <Name>HeuristicLab.Collections-3.3</Name>
     96    </ProjectReference>
    9297    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
    9398      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
     
    101106      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
    102107      <Name>HeuristicLab.Operators-3.3</Name>
     108    </ProjectReference>
     109    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
     110      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
     111      <Name>HeuristicLab.Parameters-3.3</Name>
     112    </ProjectReference>
     113    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
     114      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
     115      <Name>HeuristicLab.Persistence-3.3</Name>
    103116    </ProjectReference>
    104117    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
  • trunk/sources/HeuristicLab.Evolutionary/3.3/HeuristicLabEvolutionaryPlugin.cs.frame

    r2790 r2794  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Text;
    2522using HeuristicLab.PluginInfrastructure;
    2623
     
    3128  [Plugin("HeuristicLab.Evolutionary", "3.3.0.$WCREV$")]
    3229  [PluginFile("HeuristicLab.Evolutionary-3.3.dll", PluginFileType.Assembly)]
     30  [PluginDependency("HeuristicLab.Collections", "3.3")]
    3331  [PluginDependency("HeuristicLab.Core", "3.3")]
    3432  [PluginDependency("HeuristicLab.Data", "3.3")]
    3533  [PluginDependency("HeuristicLab.Operators", "3.3")]
     34  [PluginDependency("HeuristicLab.Parameters", "3.3")]
     35  [PluginDependency("HeuristicLab.Persistence", "3.3")]
    3636  public class HeuristicLabEvolutionaryPlugin : PluginBase {
    3737  }
Note: See TracChangeset for help on using the changeset viewer.