- Timestamp:
- 07/30/09 10:47:00 (16 years ago)
- Location:
- branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3
- Files:
-
- 1 added
- 26 edited
- 27 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/AlgorithmBase.cs
r2210 r2212 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq; 25 using System.Text; 24 using System.Xml; 26 25 using HeuristicLab.Core; 27 using System.Xml; 28 using System.Diagnostics; 26 using HeuristicLab.Data; 29 27 using HeuristicLab.DataAnalysis; 28 using HeuristicLab.Evolutionary; 29 using HeuristicLab.GP.Interfaces; 30 using HeuristicLab.Logging; 31 using HeuristicLab.Modeling; 30 32 using HeuristicLab.Operators; 31 33 using HeuristicLab.Random; 32 34 using HeuristicLab.Selection; 33 using HeuristicLab.Logging;34 using HeuristicLab.Data;35 using HeuristicLab.Operators.Programmable;36 using HeuristicLab.Evolutionary;37 using HeuristicLab.Modeling;38 using HeuristicLab.GP.Interfaces;39 35 40 36 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/CoefficientOfDeterminationEvaluator.cs
r2136 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using HeuristicLab.Data;28 using HeuristicLab.Operators;29 23 using HeuristicLab.Modeling; 30 24 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/EarlyStoppingMeanSquaredErrorEvaluator.cs
r2034 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using HeuristicLab.Core; 27 23 using HeuristicLab.Data; 28 using HeuristicLab.Operators;29 24 30 25 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/GPEvaluatorBase.cs
r2210 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using HeuristicLab.Core; 27 23 using HeuristicLab.Data; 28 using HeuristicLab.Operators;29 24 using HeuristicLab.DataAnalysis; 30 25 using HeuristicLab.GP.Interfaces; -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/MeanAbsolutePercentageErrorEvaluator.cs
r2136 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using HeuristicLab.Data;28 using HeuristicLab.Operators;29 23 using HeuristicLab.Modeling; 30 using HeuristicLab.DataAnalysis;31 24 32 25 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/MeanAbsolutePercentageOfRangeErrorEvaluator.cs
r2136 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using HeuristicLab.Data;28 using HeuristicLab.Operators;29 23 using HeuristicLab.Modeling; 30 using HeuristicLab.DataAnalysis;31 24 32 25 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/MeanSquaredErrorEvaluator.cs
r2136 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using HeuristicLab.Data;28 using HeuristicLab.Operators;29 using HeuristicLab.DataAnalysis;30 23 using HeuristicLab.Modeling; 31 24 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/SimpleEvaluator.cs
r2041 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using HeuristicLab.Core; 27 23 using HeuristicLab.Data; 28 using HeuristicLab.Operators;29 24 using HeuristicLab.DataAnalysis; 30 25 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/SimpleGPEvaluatorBase.cs
r1894 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using HeuristicLab.Core; 27 23 using HeuristicLab.Data; 28 using HeuristicLab.Operators;29 24 using HeuristicLab.DataAnalysis; 30 25 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/UncertainMeanSquaredErrorEvaluator.cs
r2034 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 23 using HeuristicLab.Core; 27 24 using HeuristicLab.Data; 28 using HeuristicLab.Operators;29 using HeuristicLab.DataAnalysis;30 25 using HeuristicLab.Random; 31 26 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/VariableEvaluationImpactCalculator.cs
r2210 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using System.Xml;26 22 using HeuristicLab.Core; 27 23 using HeuristicLab.Data; 28 24 using HeuristicLab.DataAnalysis; 29 using System.Linq;30 25 using HeuristicLab.GP.Interfaces; 31 26 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/VariableQualityImpactCalculator.cs
r2210 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 using System.Xml;26 23 using HeuristicLab.Core; 27 24 using HeuristicLab.Data; 28 25 using HeuristicLab.DataAnalysis; 29 using System.Linq;30 26 using HeuristicLab.GP.Interfaces; 31 27 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/VarianceAccountedForEvaluator.cs
r2136 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using HeuristicLab.Data;28 using HeuristicLab.Operators;29 using HeuristicLab.DataAnalysis;30 23 using HeuristicLab.Modeling; 31 24 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/FunctionLibraryInjector.cs
r2211 r2212 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 using System.Text;25 using System.Xml;26 23 using HeuristicLab.Core; 27 24 using HeuristicLab.Data; 28 using HeuristicLab.DataAnalysis;29 using HeuristicLab.Constraints;30 using StructId = HeuristicLab.GP.StructureIdentification;31 25 using HeuristicLab.GP.Interfaces; 32 26 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/HL2TreeEvaluator.cs
r1836 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using System.Xml;28 using System.Diagnostics;29 using HeuristicLab.DataAnalysis;30 23 31 24 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/HL3TreeEvaluator.cs
r2211 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using System.Xml;28 23 using System.Diagnostics; 29 using HeuristicLab.DataAnalysis;30 24 31 25 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/HeuristicLab.GP.StructureIdentification-3.3.csproj
r2211 r2212 82 82 </ItemGroup> 83 83 <ItemGroup> 84 <Compile Include="Addition.cs" />85 <Compile Include="And.cs" />86 <Compile Include="Average.cs" />87 <Compile Include="Constant.cs" />88 84 <Compile Include="AlgorithmBase.cs" /> 89 <Compile Include="ConstantFunctionTree.cs" />90 85 <Compile Include="Evaluators\SimpleGPEvaluatorBase.cs" /> 91 86 <Compile Include="HL3TreeEvaluator.cs" /> 92 <Compile Include="VariableFunctionTree.cs" /> 87 <Compile Include="Symbols\Addition.cs" /> 88 <Compile Include="Symbols\And.cs" /> 89 <Compile Include="Symbols\Average.cs" /> 90 <Compile Include="Symbols\Constant.cs" /> 91 <Compile Include="Symbols\ConstantFunctionTree.cs" /> 92 <Compile Include="Symbols\Cosinus.cs" /> 93 <Compile Include="Symbols\Differential.cs" /> 94 <Compile Include="Symbols\Division.cs" /> 95 <Compile Include="Symbols\Equal.cs" /> 96 <Compile Include="Symbols\Exponential.cs" /> 97 <Compile Include="Symbols\GreaterThan.cs" /> 98 <Compile Include="Symbols\IfThenElse.cs" /> 99 <Compile Include="Symbols\LessThan.cs" /> 100 <Compile Include="Symbols\Logarithm.cs" /> 101 <Compile Include="Symbols\Multiplication.cs" /> 102 <Compile Include="Symbols\Not.cs" /> 103 <Compile Include="Symbols\Or.cs" /> 104 <Compile Include="Symbols\Power.cs" /> 105 <Compile Include="Symbols\Signum.cs" /> 106 <Compile Include="Symbols\Sinus.cs" /> 107 <Compile Include="Symbols\Sqrt.cs" /> 108 <Compile Include="Symbols\Subtraction.cs" /> 109 <Compile Include="Symbols\SymbolTable.cs" /> 110 <Compile Include="Symbols\Tangens.cs" /> 111 <Compile Include="Symbols\Variable.cs" /> 112 <Compile Include="Symbols\VariableFunctionTree.cs" /> 113 <Compile Include="Symbols\Xor.cs" /> 93 114 <Compile Include="TreeEvaluatorBase.cs" /> 94 115 <Compile Include="HL2TreeEvaluator.cs" /> … … 110 131 </Compile> 111 132 <Compile Include="StandardGP.cs" /> 112 <Compile Include="Cosinus.cs" />113 <Compile Include="Differential.cs" />114 <Compile Include="Division.cs" />115 <Compile Include="Equal.cs" />116 133 <Compile Include="Evaluators\CoefficientOfDeterminationEvaluator.cs" /> 117 134 <Compile Include="Evaluators\UncertainMeanSquaredErrorEvaluator.cs" /> … … 122 139 <Compile Include="Evaluators\SimpleEvaluator.cs" /> 123 140 <Compile Include="Evaluators\VarianceAccountedForEvaluator.cs" /> 124 <Compile Include="Exponential.cs" />125 <Compile Include="GreaterThan.cs" />126 141 <Compile Include="HeuristicLabGPStructureIdentificationPlugin.cs" /> 127 <Compile Include="IfThenElse.cs" />128 <Compile Include="LessThan.cs" />129 <Compile Include="Logarithm.cs" />130 142 <Compile Include="ModelAnalyzerExporter.cs" /> 131 <Compile Include="Multiplication.cs" />132 <Compile Include="Not.cs" />133 <Compile Include="Or.cs" />134 <Compile Include="Power.cs" />135 143 <Compile Include="Properties\AssemblyInfo.cs" /> 136 <Compile Include="Signum.cs" />137 <Compile Include="Sinus.cs" />138 <Compile Include="Sqrt.cs" />139 <Compile Include="Subtraction.cs" />140 144 <Compile Include="SymbolicExpressionExporter.cs" /> 141 <Compile Include="SymbolTable.cs" />142 <Compile Include="Tangens.cs" />143 <Compile Include="Variable.cs" />144 145 <Compile Include="Evaluators\VariableEvaluationImpactCalculator.cs" /> 145 146 <Compile Include="Evaluators\VariableQualityImpactCalculator.cs" /> 146 <Compile Include="Xor.cs" /> 147 </ItemGroup> 148 <ItemGroup> 149 <ProjectReference Include="..\..\HeuristicLab.Constraints\3.2\HeuristicLab.Constraints-3.2.csproj"> 150 <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project> 151 <Name>HeuristicLab.Constraints-3.2</Name> 152 </ProjectReference> 147 </ItemGroup> 148 <ItemGroup> 153 149 <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj"> 154 150 <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project> … … 170 166 <Project>{924B6BEA-9A99-40FE-9334-5C01E8D540EC}</Project> 171 167 <Name>HeuristicLab.GP.Interfaces-3.3</Name> 168 </ProjectReference> 169 <ProjectReference Include="..\..\HeuristicLab.GP.Operators\3.3\HeuristicLab.GP.Operators-3.3.csproj"> 170 <Project>{45D11FBD-A71B-48D3-8A94-8EB0DFE8E06A}</Project> 171 <Name>HeuristicLab.GP.Operators-3.3</Name> 172 172 </ProjectReference> 173 173 <ProjectReference Include="..\..\HeuristicLab.GP\3.3\HeuristicLab.GP-3.3.csproj"> … … 224 224 <None Include="HeuristicLab.snk" /> 225 225 <None Include="Properties\AssemblyInfo.frame" /> 226 </ItemGroup>227 <ItemGroup>228 <Folder Include="BaseClasses\" />229 226 </ItemGroup> 230 227 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/HeuristicLabGPStructureIdentificationPlugin.cs
r2210 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 22 using HeuristicLab.PluginInfrastructure; 26 23 … … 28 25 [ClassInfo(Name = "HeuristicLab.GP.StructureIdentification-3.3")] 29 26 [PluginFile(Filename = "HeuristicLab.GP.StructureIdentification-3.3.dll", Filetype = PluginFileType.Assembly)] 30 [Dependency(Dependency = "HeuristicLab.Constraints-3.2")]31 27 [Dependency(Dependency = "HeuristicLab.Core-3.2")] 32 28 [Dependency(Dependency = "HeuristicLab.Data-3.2")] … … 35 31 [Dependency(Dependency = "HeuristicLab.GP-3.3")] 36 32 [Dependency(Dependency = "HeuristicLab.GP.Interfaces-3.3")] 33 [Dependency(Dependency = "HeuristicLab.GP.Operators-3.3")] 37 34 [Dependency(Dependency = "HeuristicLab.Logging-3.2")] 38 35 [Dependency(Dependency = "HeuristicLab.Modeling-3.2")] -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/ITreeEvaluator.cs
r2210 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using HeuristicLab.Core; 27 using System.Xml;28 using System.Diagnostics;29 23 using HeuristicLab.DataAnalysis; 30 24 using HeuristicLab.GP.Interfaces; -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/ModelAnalyzerExporter.cs
r2210 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.Data;27 22 using HeuristicLab.GP.Interfaces; 28 23 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/OffSpringSelectionGpEditor.cs
r1873 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.ComponentModel;25 using System.Drawing;26 using System.Data;27 using System.Text;28 23 using System.Windows.Forms; 29 24 using HeuristicLab.PluginInfrastructure; -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/OffspringSelectionGP.cs
r2130 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 using System.Diagnostics;29 using HeuristicLab. DataAnalysis;25 using HeuristicLab.Data; 26 using HeuristicLab.Evolutionary; 27 using HeuristicLab.Logging; 30 28 using HeuristicLab.Operators; 31 using HeuristicLab.Random;32 29 using HeuristicLab.Selection; 33 using HeuristicLab.Logging;34 using HeuristicLab.Data;35 using HeuristicLab.Operators.Programmable;36 30 using HeuristicLab.Selection.OffspringSelection; 37 using HeuristicLab.Evolutionary;38 31 39 32 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/StandardGP.cs
r2210 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using HeuristicLab.Core; 27 using System.Xml;28 using System.Diagnostics;29 23 using HeuristicLab.DataAnalysis; 30 24 using HeuristicLab.Operators; 31 using HeuristicLab.Random;32 25 using HeuristicLab.Selection; 33 26 using HeuristicLab.Logging; … … 35 28 using HeuristicLab.Operators.Programmable; 36 29 using HeuristicLab.Modeling; 30 using HeuristicLab.GP.Operators; 37 31 38 32 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/StandardGpEditor.cs
r1873 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.ComponentModel;25 using System.Drawing;26 using System.Data;27 using System.Text;28 23 using System.Windows.Forms; 24 using HeuristicLab.Core; 29 25 using HeuristicLab.PluginInfrastructure; 30 using HeuristicLab.Core;31 26 32 27 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/SymbolicExpressionExporter.cs
r2210 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 22 using System.Text; 26 using HeuristicLab.Data;27 23 using HeuristicLab.GP.Interfaces; 28 24 -
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 { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/TreeEvaluatorBase.cs
r2210 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 using System.Diagnostics;29 25 using HeuristicLab.DataAnalysis; 30 using HeuristicLab.Data;31 26 using HeuristicLab.GP.Interfaces; 32 27
Note: See TracChangeset
for help on using the changeset viewer.