Changeset 2324 for trunk/sources
- Timestamp:
- 09/02/09 10:39:35 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 1 added
- 1 deleted
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Common/3.2/HeuristicLab.Common-3.2.csproj
r2323 r2324 64 64 </ItemGroup> 65 65 <ItemGroup> 66 <Compile Include="DoubleExtensions.cs"> 67 <SubType>Code</SubType> 68 </Compile> 66 69 <Compile Include="EnumerableEventArgs.cs" /> 67 70 <Compile Include="HeuristicLabCommonPlugin.cs" /> -
trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/HL3TreeEvaluator.cs
r2226 r2324 22 22 using System; 23 23 using System.Diagnostics; 24 using HeuristicLab. Modeling; // double.IsAlmost extension24 using HeuristicLab.Common; // double.IsAlmost extension 25 25 26 26 namespace HeuristicLab.GP.StructureIdentification { -
trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/HeuristicLab.GP.StructureIdentification-3.3.csproj
r2319 r2324 149 149 </ItemGroup> 150 150 <ItemGroup> 151 <ProjectReference Include="..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj"> 152 <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project> 153 <Name>HeuristicLab.Common-3.2</Name> 154 </ProjectReference> 151 155 <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj"> 152 156 <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project> -
trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/HeuristicLabGPStructureIdentificationPlugin.cs
r2222 r2324 25 25 [ClassInfo(Name = "HeuristicLab.GP.StructureIdentification-3.3")] 26 26 [PluginFile(Filename = "HeuristicLab.GP.StructureIdentification-3.3.dll", Filetype = PluginFileType.Assembly)] 27 [Dependency(Dependency = "HeuristicLab.Common-3.2")] 27 28 [Dependency(Dependency = "HeuristicLab.Core-3.2")] 28 29 [Dependency(Dependency = "HeuristicLab.Data-3.2")] -
trunk/sources/HeuristicLab.LinearRegression/3.2/HeuristicLab.LinearRegression-3.2.csproj
r2222 r2324 101 101 </ItemGroup> 102 102 <ItemGroup> 103 <ProjectReference Include="..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj"> 104 <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project> 105 <Name>HeuristicLab.Common-3.2</Name> 106 </ProjectReference> 103 107 <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj"> 104 108 <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project> -
trunk/sources/HeuristicLab.LinearRegression/3.2/HeuristicLabLinearRegressionPlugin.cs
r2222 r2324 28 28 [PluginFile(Filename = "HeuristicLab.LinearRegression-3.2.dll", Filetype = PluginFileType.Assembly)] 29 29 [PluginFile(Filename = "ALGLIB License.txt", Filetype = PluginFileType.License)] 30 [Dependency(Dependency = "HeuristicLab.Common-3.2")] 30 31 [Dependency(Dependency = "HeuristicLab.Core-3.2")] 31 32 [Dependency(Dependency = "HeuristicLab.Data-3.2")] -
trunk/sources/HeuristicLab.LinearRegression/3.2/LinearRegressionOperator.cs
r2226 r2324 24 24 using System.Text; 25 25 using HeuristicLab.Core; 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Data; 27 28 using HeuristicLab.DataAnalysis; -
trunk/sources/HeuristicLab.Modeling/3.2/HeuristicLab.Modeling-3.2.csproj
r2319 r2324 84 84 <Compile Include="AnalyzerModel.cs" /> 85 85 <Compile Include="ClassificationProblemInjector.cs" /> 86 <Compile Include="DoubleExtensions.cs" />87 86 <Compile Include="IAnalyzerModel.cs" /> 88 87 <Compile Include="MatrixCreator.cs" /> … … 112 111 </ItemGroup> 113 112 <ItemGroup> 113 <ProjectReference Include="..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj"> 114 <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project> 115 <Name>HeuristicLab.Common-3.2</Name> 116 </ProjectReference> 114 117 <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj"> 115 118 <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project> -
trunk/sources/HeuristicLab.Modeling/3.2/HeuristicLabModelingPlugin.cs
r2223 r2324 28 28 [ClassInfo(Name = "HeuristicLab.Modeling-3.2")] 29 29 [PluginFile(Filename = "HeuristicLab.Modeling-3.2.dll", Filetype = PluginFileType.Assembly)] 30 [Dependency(Dependency = "HeuristicLab.Common-3.2")] 30 31 [Dependency(Dependency = "HeuristicLab.Core-3.2")] 31 32 [Dependency(Dependency = "HeuristicLab.Data-3.2")] -
trunk/sources/HeuristicLab.Modeling/3.2/SimpleMeanAbsolutePercentageOfRangeErrorEvaluator.cs
r2226 r2324 25 25 using System.Text; 26 26 using HeuristicLab.Core; 27 using HeuristicLab.Common; 27 28 using HeuristicLab.Data; 28 29 using HeuristicLab.DataAnalysis; -
trunk/sources/HeuristicLab.Modeling/3.2/SimpleVarianceAccountedForEvaluator.cs
r2226 r2324 25 25 using System.Text; 26 26 using HeuristicLab.Core; 27 using HeuristicLab.Common; 27 28 using HeuristicLab.Data; 28 29 using HeuristicLab.DataAnalysis; -
trunk/sources/HeuristicLab.Modeling/3.2/VariableEvaluationImpactCalculator.cs
r2319 r2324 25 25 using System.Xml; 26 26 using HeuristicLab.Core; 27 using HeuristicLab.Common; 27 28 using HeuristicLab.Data; 28 29 using HeuristicLab.DataAnalysis; … … 38 39 AddVariableInfo(new VariableInfo("TargetVariable", "TargetVariable", typeof(IntData), VariableKind.In)); 39 40 AddVariableInfo(new VariableInfo("InputVariableNames", "Names of used variables in the model (optional)", typeof(ItemList<StringData>), VariableKind.In)); 40 AddVariableInfo(new VariableInfo("SamplesStart", " SamplesStart", typeof(IntData), VariableKind.In));41 AddVariableInfo(new VariableInfo("SamplesEnd", " SamplesEnd", typeof(IntData), VariableKind.In));41 AddVariableInfo(new VariableInfo("SamplesStart", "TrainingSamplesStart", typeof(IntData), VariableKind.In)); 42 AddVariableInfo(new VariableInfo("SamplesEnd", "TrainingSamplesEnd", typeof(IntData), VariableKind.In)); 42 43 AddVariableInfo(new VariableInfo("VariableEvaluationImpacts", "VariableEvaluationImpacts", typeof(ItemList), VariableKind.New)); 43 44 } … … 76 77 77 78 } 78 79 79 public static Dictionary<string, double> Calculate(Dataset dataset, IPredictor predictor, string targetVariableName, int start, int end) { 80 80 return Calculate(dataset, predictor, targetVariableName, null, start, end); 81 81 } 82 83 82 84 83 public static Dictionary<string, double> Calculate(Dataset dataset, IPredictor predictor, string targetVariableName, IEnumerable<string> inputVariableNames, int start, int end) {
Note: See TracChangeset
for help on using the changeset viewer.