- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.SequentialEngine/3.3/SequentialEngine.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.SequentialEngine { … … 30 30 /// Engine for sequential execution of algorithms. 31 31 /// </summary> 32 [Storable Class]32 [StorableType("2100B28B-18B3-41F5-B8A2-1DD009ADF4A9")] 33 33 [Item("Sequential Engine", "Engine for sequential execution of algorithms.")] 34 34 public class SequentialEngine : Engine { 35 35 [StorableConstructor] 36 protected SequentialEngine( bool deserializing) : base(deserializing) { }36 protected SequentialEngine(StorableConstructorFlag _) : base(_) { } 37 37 protected SequentialEngine(SequentialEngine original, Cloner cloner) : base(original, cloner) { } 38 38 public SequentialEngine() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.