Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (6 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.ParallelEngine/3.3/ParallelEngine.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.
     
    2626using HeuristicLab.Common;
    2727using HeuristicLab.Core;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2929
    3030namespace HeuristicLab.ParallelEngine {
     
    3333  /// This engine is suitable for parallel processing on shared memory systems which provide multiple cores.
    3434  /// </summary>
    35   [StorableClass]
     35  [StorableType("3B3366ED-22C5-4E4F-B307-E08FACCF0E20")]
    3636  [Item("Parallel Engine", "Engine for parallel execution of algorithms using multiple threads (suitable for shared memory systems with multiple cores).")]
    3737  public class ParallelEngine : Engine {
     
    5252
    5353    [StorableConstructor]
    54     protected ParallelEngine(bool deserializing) : base(deserializing) { }
     54    protected ParallelEngine(StorableConstructorFlag _) : base(_) { }
    5555    protected ParallelEngine(ParallelEngine original, Cloner cloner)
    5656      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.