- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Optimization
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Optimization (added) merged: 16452-16454,16462,16476,16529,16539,16558-16559
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Optimization/3.3/RunCollectionModification/Calculator.cs
r15583 r16565 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. … … 29 29 using HeuristicLab.Core; 30 30 using HeuristicLab.Data; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 33 33 namespace HeuristicLab.Optimization { 34 34 35 [Storable Class]35 [StorableType("6C41AF6F-5F02-4510-B1B5-222651C4021B")] 36 36 public class Calculator : IDeepCloneable { 37 37 … … 54 54 55 55 [StorableConstructor] 56 protected Calculator( bool deserializing) { }56 protected Calculator(StorableConstructorFlag _) { } 57 57 public Calculator() { } 58 58 protected Calculator(Calculator original, Cloner cloner) { -
trunk/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionDiscretizer.cs
r15583 r16565 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. … … 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 25 using HeuristicLab.Common; 27 26 using HeuristicLab.Core; 28 27 using HeuristicLab.Data; 29 28 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 31 30 32 31 namespace HeuristicLab.Optimization { … … 34 33 "Creates several levels from the distribution of a certain result accross a run collection and " + 35 34 "assigns a discretized value. Non-existing numbers as well as NaN and infinities are excluded from the caluclation.")] 36 [Storable Class]35 [StorableType("6EFD185F-FE23-4E23-90F0-63CB9D38E57D")] 37 36 public class RunCollectionDiscretizer : ParameterizedNamedItem, IRunCollectionModifier { 38 37 … … 69 68 #region Construction & Cloning 70 69 [StorableConstructor] 71 protected RunCollectionDiscretizer( bool deserializing) : base(deserializing) { }70 protected RunCollectionDiscretizer(StorableConstructorFlag _) : base(_) { } 72 71 protected RunCollectionDiscretizer(RunCollectionDiscretizer original, Cloner cloner) 73 72 : base(original, cloner) { -
trunk/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionFormulaModifer.cs
r15583 r16565 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. … … 22 22 using System; 23 23 using System.Collections.Generic; 24 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 Formula Modifier", "Modifies a RunCollection by adding results using the given formula.")] 35 [Storable Class]33 [StorableType("EEE365F2-8BEB-41C6-9DE6-94CA8FAC5108")] 36 34 public class RunCollectionFormulaModifer : ParameterizedNamedItem, IRunCollectionModifier { 37 35 … … 52 50 #region Construction & Cloning 53 51 [StorableConstructor] 54 protected RunCollectionFormulaModifer( bool deserializing) : base(deserializing) { }52 protected RunCollectionFormulaModifer(StorableConstructorFlag _) : base(_) { } 55 53 protected RunCollectionFormulaModifer(RunCollectionFormulaModifer original, Cloner cloner) 56 54 : base(original, cloner) { -
trunk/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionGroupCreater.cs
r15583 r16565 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; … … 27 26 using HeuristicLab.Data; 28 27 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 30 29 31 30 namespace HeuristicLab.Optimization { 32 31 33 32 [Item("RunCollection Group Creater", "Regroups existing runs according to equal values in GroupBy and prefixes them according to their value in Prefix.")] 34 [Storable Class]33 [StorableType("5D3A55DE-DC75-4932-B3D2-2C59810143A5")] 35 34 public class RunCollectionGroupCreater : ParameterizedNamedItem, IRunCollectionModifier { 36 35 … … 48 47 #region Construction & Cloning 49 48 [StorableConstructor] 50 protected RunCollectionGroupCreater( bool deserializing) : base(deserializing) { }49 protected RunCollectionGroupCreater(StorableConstructorFlag _) : base(_) { } 51 50 protected RunCollectionGroupCreater(RunCollectionGroupCreater original, Cloner cloner) : base(original, cloner) { } 52 51 public RunCollectionGroupCreater() { -
trunk/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionRunRemover.cs
r15583 r16565 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. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Optimization { 28 28 [Item("RunCollection Run Remover", "Removes all currently visible runs. Use the filtering tab to selectively remove runs.")] 29 [Storable Class]29 [StorableType("F66D03A7-6BF8-4DB5-9341-B1BFAA8AA023")] 30 30 public class RunCollectionRunRemover : ParameterizedNamedItem, IRunCollectionModifier { 31 31 32 32 #region Construction & Cloning 33 33 [StorableConstructor] 34 protected RunCollectionRunRemover( bool deserializing) : base(deserializing) { }34 protected RunCollectionRunRemover(StorableConstructorFlag _) : base(_) { } 35 35 protected RunCollectionRunRemover(RunCollectionRunRemover original, Cloner cloner) : base(original, cloner) {} 36 36 public RunCollectionRunRemover() {} -
trunk/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionSorter.cs
r15583 r16565 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. … … 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 25 using HeuristicLab.Common; 27 26 using HeuristicLab.Core; 28 27 using HeuristicLab.Data; 29 28 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 31 30 32 31 namespace HeuristicLab.Optimization { 33 32 [Item("RunCollection Sorter", "Sorts a run collection according the specified key variable.")] 34 [Storable Class]33 [StorableType("0F64D1D2-8934-4697-B997-A8072ADB4CF3")] 35 34 public class RunCollectionSorter : ParameterizedNamedItem, IRunCollectionModifier { 36 35 … … 48 47 #region Construction & Cloning 49 48 [StorableConstructor] 50 protected RunCollectionSorter( bool deserializing) : base(deserializing) { }49 protected RunCollectionSorter(StorableConstructorFlag _) : base(_) { } 51 50 protected RunCollectionSorter(RunCollectionSorter original, Cloner cloner) 52 51 : base(original, cloner) { … … 80 79 } 81 80 81 [StorableType("824092f4-863b-4ba8-ac0a-98f871876a6e")] 82 82 private class ValueComparer : IComparer<IComparable> { 83 83 -
trunk/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionValueRemover.cs
r15583 r16565 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.