- Timestamp:
- 07/30/09 19:41:58 (15 years ago)
- Location:
- branches/GP-Refactoring-713/sources/HeuristicLab.GP.SantaFe/3.3/Symbols
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-Refactoring-713/sources/HeuristicLab.GP.SantaFe/3.3/Symbols/Left.cs
r2211 r2216 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Data;26 using HeuristicLab.Core;27 using System.Xml;28 using HeuristicLab.Constraints;29 using HeuristicLab.DataAnalysis;30 using HeuristicLab.Random;31 32 22 namespace HeuristicLab.GP.SantaFe { 33 public sealed class Left : FunctionBase { 34 35 public override string Description { 36 get { return ""; } 37 } 38 39 public Left() 40 : base() { 41 MinArity = 0; MaxArity = 0; 42 } 23 public sealed class Left : Terminal { 43 24 } 44 25 }
Note: See TracChangeset
for help on using the changeset viewer.