Changeset 2212 for branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols
- Timestamp:
- 07/30/09 10:47:00 (15 years ago)
- Location:
- branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols
- Files:
-
- 1 added
- 27 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Addition.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using System.Linq;29 22 30 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/And.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Constraints;27 22 28 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Average.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Constraints;27 22 28 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Constant.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 22 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; 23 using HeuristicLab.GP.Interfaces; 30 24 using HeuristicLab.Operators; 31 25 using HeuristicLab.Random; 32 using HeuristicLab.GP.Interfaces;33 26 34 27 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/ConstantFunctionTree.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 using System.Text;25 23 using HeuristicLab.Core; 26 24 using HeuristicLab.Data; -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Cosinus.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using HeuristicLab.DataAnalysis;29 22 30 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Differential.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Data;28 using HeuristicLab.Constraints;29 using HeuristicLab.DataAnalysis;30 using HeuristicLab.Operators;31 using HeuristicLab.Random;32 22 33 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Division.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using System.Linq;29 using HeuristicLab.DataAnalysis;30 22 31 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Equal.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Constraints;27 using HeuristicLab.DataAnalysis;28 22 29 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Exponential.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using HeuristicLab.DataAnalysis;29 22 30 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/GreaterThan.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Constraints;27 22 28 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/IfThenElse.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Constraints;27 using HeuristicLab.DataAnalysis;28 22 29 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/LessThan.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Constraints;27 using HeuristicLab.DataAnalysis;28 22 29 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Logarithm.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using HeuristicLab.DataAnalysis;29 22 30 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Multiplication.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using System.Linq;29 using HeuristicLab.DataAnalysis;30 22 31 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Not.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Constraints;27 using HeuristicLab.DataAnalysis;28 29 22 namespace HeuristicLab.GP.StructureIdentification { 30 23 public sealed class Not : UnaryFunction { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Or.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Constraints;27 using HeuristicLab.DataAnalysis;28 22 29 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Power.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using HeuristicLab.DataAnalysis;29 22 30 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Signum.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using HeuristicLab.DataAnalysis;29 22 30 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Sinus.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using HeuristicLab.DataAnalysis;29 22 30 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Sqrt.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using HeuristicLab.DataAnalysis;29 22 30 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Subtraction.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using System.Linq;29 using HeuristicLab.DataAnalysis;30 22 31 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/SymbolTable.cs
r2211 r2212 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 24 using HeuristicLab.Core; 27 using System.Xml;28 25 using HeuristicLab.GP.Interfaces; 29 26 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Tangens.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using HeuristicLab.Core;26 using System.Diagnostics;27 using HeuristicLab.Constraints;28 using HeuristicLab.DataAnalysis;29 22 30 23 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Variable.cs
r2211 r2212 20 20 #endregion 21 21 22 using System; 23 using System.Collections.Generic; 24 using System.Text; 25 using HeuristicLab.Core; 26 using System.Diagnostics; 27 using HeuristicLab.Data; 28 using HeuristicLab.Constraints; 29 using HeuristicLab.DataAnalysis; 22 using HeuristicLab.GP.Interfaces; 23 using HeuristicLab.Operators; 30 24 using HeuristicLab.Random; 31 using HeuristicLab.Operators;32 using HeuristicLab.GP.Interfaces;33 25 34 26 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/VariableFunctionTree.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 using System.Text;25 23 using HeuristicLab.Core; 26 24 using HeuristicLab.Data; -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Xor.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Constraints;27 using HeuristicLab.DataAnalysis;28 22 29 23 namespace HeuristicLab.GP.StructureIdentification {
Note: See TracChangeset
for help on using the changeset viewer.