Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (5 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Operators/3.3/ReductionOperation.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2424using HeuristicLab.Core;
    2525using HeuristicLab.Data;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2727
    2828namespace HeuristicLab.Operators {
     29  [StorableType("1080f82a-f4cd-41db-a474-6578a4b9ec82")]
    2930  public enum ReductionOperations {
    3031    Sum,
     
    4041
    4142  [Item("ReductionOperation", "Represents a certain type of reduction operation.")]
    42   [StorableClass]
     43  [StorableType("32D733BA-9331-46D2-8BB3-95E23431F00B")]
    4344  public class ReductionOperation : ValueTypeValue<ReductionOperations> {
    4445    public static new Image StaticItemImage {
     
    4748
    4849    [StorableConstructor]
    49     protected ReductionOperation(bool deserializing) : base(deserializing) { }
     50    protected ReductionOperation(StorableConstructorFlag _) : base(_) { }
    5051    protected ReductionOperation(ReductionOperation original, Cloner cloner) : base(original, cloner) { }
    5152    public ReductionOperation() : base() { }
Note: See TracChangeset for help on using the changeset viewer.