Changeset 10775
- Timestamp:
- 04/23/14 14:03:24 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/HeuristicLab.Problems.DataAnalysis.Transformations-3.3.csproj
r10773 r10775 48 48 <ItemGroup> 49 49 <Compile Include="CopyColumnTransformation.cs" /> 50 <Compile Include="ShiftDataToRangeTransformation.cs" /> 50 51 <Compile Include="Transformation.cs" /> 51 52 <None Include="HeuristicLab.snk" /> -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/LinearTransformation.cs
r10770 r10775 49 49 public double Multiplicand { 50 50 get { return MultiplicandParameter.Value.Value; } 51 protected set { 52 MultiplicandParameter.Value.Value = value; 53 } 51 54 } 52 55 53 56 public double Summand { 54 57 get { return SummandParameter.Value.Value; } 58 protected set { 59 SummandParameter.Value.Value = value; 60 } 55 61 } 56 62 #endregion
Note: See TracChangeset
for help on using the changeset viewer.