- Timestamp:
- 03/31/19 14:40:15 (6 years ago)
- Location:
- branches/1614_GeneralizedQAP/HeuristicLab.Optimization
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Optimization
- Property svn:mergeinfo changed
-
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/Results/IResult.cs
r15605 r16728 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 HeuristicLab.Core; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Optimization { 27 [StorableType("e05050f3-5f92-4245-b733-7097d496e781")] 26 28 /// <summary> 27 29 /// Represents a result which has a name and a data type and holds an IItem. -
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/Results/IResultParameter.cs
r15605 r16728 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 HeuristicLab.Core; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Optimization { 27 [StorableType("af5d3f60-6f3a-4a44-a906-688ac8296fe3")] 26 28 public interface IResultParameter : ILookupParameter { 27 29 string ResultCollectionName { get; set; } … … 29 31 } 30 32 33 [StorableType("803e6ad6-dd9d-497a-ad1c-7cd3dc5b0d3c")] 31 34 public interface IResultParameter<T> : ILookupParameter<T>, IResultParameter where T : class, IItem { 32 35 T DefaultValue { get; set; } -
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/Results/Result.cs
r15605 r16728 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.Optimization { … … 31 31 /// </summary> 32 32 [Item("Result", "A result which has a name and a data type and holds an IItem.")] 33 [Storable Class]33 [StorableType("219051C0-9D62-4CDE-9BA1-32233C81B678")] 34 34 public sealed class Result : NamedItem, IResult, IStorableContent { 35 35 public string Filename { get; set; } … … 76 76 77 77 [StorableConstructor] 78 private Result( bool deserializing) : base(deserializing) { }78 private Result(StorableConstructorFlag _) : base(_) { } 79 79 private Result(Result original, Cloner cloner) 80 80 : base(original, cloner) { -
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/Results/ResultCollection.cs
r15605 r16728 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 [Storable Class]28 [StorableType("959230E3-C51B-4EC0-BDB2-0B0D71F5A6E3")] 29 29 [Item("ResultCollection", "Represents a collection of results.")] 30 30 public class ResultCollection : NamedItemCollection<IResult> { … … 33 33 public ResultCollection(IEnumerable<IResult> collection) : base(collection) { } 34 34 [StorableConstructor] 35 protected ResultCollection( bool deserializing) : base(deserializing) { }35 protected ResultCollection(StorableConstructorFlag _) : base(_) { } 36 36 protected ResultCollection(ResultCollection original, Cloner cloner) 37 37 : base(original, cloner) { -
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/Results/ResultParameter.cs
r15719 r16728 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. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Optimization { 31 31 [Item("ResultParameter", "A parameter whose value is written to a result collection.")] 32 [Storable Class]32 [StorableType("CF10EF50-82B6-4A98-82C0-3C5ECED48904")] 33 33 public sealed class ResultParameter<T> : LookupParameter<T>, IResultParameter<T> where T : class, IItem { 34 34 public override Image ItemImage { get { return VSImageLibrary.Exception; } } … … 62 62 63 63 [StorableConstructor] 64 private ResultParameter( bool deserializing) : base(deserializing) { }64 private ResultParameter(StorableConstructorFlag _) : base(_) { } 65 65 private ResultParameter(ResultParameter<T> original, Cloner cloner) 66 66 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.