Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/28/19 12:41:36 (5 years ago)
Author:
gkronber
Message:

#2971: made branch compile with current version of trunk

Location:
branches/2971_named_intervals
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2971_named_intervals

    • Property svn:ignore set to
      packages
  • branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/LinearTransformation.cs

    r15583 r16628  
    2929using HeuristicLab.Parameters;
    3030using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Attic;
    3132
    3233namespace HeuristicLab.Problems.DataAnalysis {
    33   [StorableClass]
     34  [StorableType("E451C88C-A33E-43F7-BCF6-AB54E5733CEE")]
    3435  [Item("Linear Transformation", "f(x) = k * x + d | Represents a linear transformation with multiplication and addition.")]
    3536  public class LinearTransformation : Transformation<double> {
     
    6667
    6768    [StorableConstructor]
    68     protected LinearTransformation(bool deserializing) : base(deserializing) { }
     69    protected LinearTransformation(StorableConstructorFlag _) : base(_) { }
    6970    protected LinearTransformation(LinearTransformation original, Cloner cloner)
    7071      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.