- Timestamp:
- 07/30/09 19:41:58 (15 years ago)
- Location:
- branches/GP-Refactoring-713/sources/HeuristicLab.GP.Boolean/3.3/Symbols
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-Refactoring-713/sources/HeuristicLab.GP.Boolean/3.3/Symbols/Or.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 31 22 namespace HeuristicLab.GP.Boolean{ 32 public sealed class Or : FunctionBase { 33 34 public override string Description { 35 get { return ""; } 36 } 37 38 public Or() 39 : base() { 40 MinArity = 2; MaxArity = 2; 41 } 23 public sealed class Or : BinaryFunction { 42 24 } 43 25 }
Note: See TracChangeset
for help on using the changeset viewer.