- 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/Prog2.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 22 32 23 namespace HeuristicLab.GP.SantaFe { 33 public sealed class Prog2 : FunctionBase { 34 35 public override string Description { 36 get { return ""; } 37 } 38 39 public Prog2() 40 : base() { 41 MinArity = 2; MaxArity = 2; 42 } 24 public sealed class Prog2 : BinaryFunction { 43 25 } 44 26 }
Note: See TracChangeset
for help on using the changeset viewer.