Changeset 16956 for branches/2457_ExpertSystem/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionValueRemover.cs
- Timestamp:
- 05/15/19 13:36:51 (5 years ago)
- Location:
- branches/2457_ExpertSystem/HeuristicLab.Optimization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2457_ExpertSystem/HeuristicLab.Optimization
- Property svn:mergeinfo changed
-
branches/2457_ExpertSystem/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionValueRemover.cs
r16075 r16956 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. … … 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 23 using System.Linq; 25 using System.Text;26 24 using HeuristicLab.Common; 27 25 using HeuristicLab.Core; 28 26 using HeuristicLab.Data; 29 27 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 31 29 32 30 namespace HeuristicLab.Optimization { 33 31 34 32 [Item("RunCollection Value Remover", "Modifies a RunCollection by removing results or parameters.")] 35 [Storable Class]33 [StorableType("300726A9-3E81-4F8E-A11F-4A5B3CDCA796")] 36 34 public class RunCollectionValueRemover : ParameterizedNamedItem, IRunCollectionModifier { 37 35 … … 46 44 #region Construction & Cloning 47 45 [StorableConstructor] 48 protected RunCollectionValueRemover( bool deserializing) : base(deserializing) { }46 protected RunCollectionValueRemover(StorableConstructorFlag _) : base(_) { } 49 47 protected RunCollectionValueRemover(RunCollectionValueRemover original, Cloner cloner) 50 48 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.