- Timestamp:
- 01/28/19 18:16:20 (3 years ago)
- Location:
- addons/HeuristicLab.MetaOptimization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
addons/HeuristicLab.MetaOptimization
- Property svn:ignore
-
old new 8 8 HeuristicLab.MetaOptimization.sln.docstates.suo 9 9 _ReSharper.HeuristicLab.MetaOptimization 10 packages
-
- Property svn:ignore
-
addons/HeuristicLab.MetaOptimization/HeuristicLab.HiveEngine/3.3/HiveEngine.cs
r16173 r16574 28 28 using HeuristicLab.Common; 29 29 using HeuristicLab.Core; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 namespace HeuristicLab.HiveEngine { … … 34 34 /// Represents an engine that executes operations which can be executed in parallel on the hive 35 35 /// </summary> 36 [Storable Class]36 [StorableType("EF161417-A08F-49FB-8A63-FBF37506BE7E")] 37 37 [Item("Hive Engine", "Engine for parallel execution on the hive. You need enable `Parallel` for at least one operator in your operator graph to have all childoperations parallelized. Also those childoperations must not have sideeffects on a higher scope.")] 38 38 public class HiveEngine : Engine { … … 104 104 105 105 [StorableConstructor] 106 protected HiveEngine( bool deserializing) : base(deserializing) { }106 protected HiveEngine(StorableConstructorFlag _) : base(_) { } 107 107 protected HiveEngine(HiveEngine original, Cloner cloner) 108 108 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.