Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/25/10 19:19:37 (14 years ago)
Author:
gkronber
Message:

Worked on SymbolicTreeEncoding plugin. #937 (Data types and operators for symbolic expression tree encoding)

Location:
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3

    • Property svn:ignore set to
      bin
      *.user
      obj
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3/HeuristicLabEncodingsSymbolicExpressionTreePlugin.cs.frame

    r3218 r3219  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2525using HeuristicLab.PluginInfrastructure;
    2626
    27 namespace HeuristicLab.GP.Operators {
    28   [Plugin("HeuristicLab.GP.Operators", "3.3.0.$WCREV$")]
    29   [PluginFile("HeuristicLab.GP.Operators-3.3.dll", PluginFileType.Assembly)]
    30   [PluginDependency("HeuristicLab.Core-3.2")]
    31   [PluginDependency("HeuristicLab.Data-3.2")]
    32   [PluginDependency("HeuristicLab.Evolutionary-3.2")]
    33   [PluginDependency("HeuristicLab.GP", "3.3")]
    34   [PluginDependency("HeuristicLab.GP.Interfaces", "3.3")]
    35   [PluginDependency("HeuristicLab.Operators-3.2")]
    36   [PluginDependency("HeuristicLab.Random-3.2")]
    37   [PluginDependency("HeuristicLab.Selection-3.2")]
    38   public class HeuristicLabGPOperatorsPlugin : PluginBase {
     27namespace HeuristicLab.Encodings.SymbolicExpressionTree {
     28  [Plugin("HeuristicLab.Encodings.SymbolicExpressionTree", "3.3.0.$WCREV$")]
     29  [PluginFile("HeuristicLab.Encodings.SymbolicExpressionTree-3.3.dll", PluginFileType.Assembly)]
     30  [PluginDependency("HeuristicLab.Core", "3.3.0.0")]
     31  [PluginDependency("HeuristicLab.Data", "3.3.0.0")]
     32  [PluginDependency("HeuristicLab.Optimization", "3.3.0.0")]
     33  [PluginDependency("HeuristicLab.Parameters", "3.3.0.0")]
     34  [PluginDependency("HeuristicLab.Persistence", "3.3.0.0")]
     35  [PluginDependency("HeuristicLab.Random", "3.3.0.0")]
     36  public class HeuristicLabEncodingsSymbolicExpressionTreePlugin : PluginBase {
    3937  }
    4038}
Note: See TracChangeset for help on using the changeset viewer.