- Timestamp:
- 05/14/14 15:42:35 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis/3.4
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis/3.4/HeuristicLab.Problems.DataAnalysis-3.4.csproj
r10845 r10854 150 150 <Compile Include="Interfaces\IDataAnalysisSolutionExporter.cs" /> 151 151 <Compile Include="Interfaces\IDependencyCalculator.cs" /> 152 <Compile Include="Interfaces\IModelBacktransformator.cs" /> 152 153 <Compile Include="Interfaces\ITransformationMapper.cs" /> 153 154 <Compile Include="Interfaces\Regression\IRegressionEnsembleModel.cs"> -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/ITransformationMapper.cs
r10845 r10854 20 20 #endregion 21 21 22 23 22 using HeuristicLab.Problems.DataAnalysis.Transformations; 24 23 25 24 namespace HeuristicLab.Problems.DataAnalysis { 26 public interface ITransformationMapper< T> {25 public interface ITransformationMapper<out T> { 27 26 T GenerateModel(ITransformation transformation); 28 27 T GenerateInverseModel(ITransformation transformation);
Note: See TracChangeset
for help on using the changeset viewer.