Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (5 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Problems.ExternalEvaluation/3.4/EvaluationCache.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    3636using HeuristicLab.Data;
    3737using HeuristicLab.Parameters;
    38 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     38using HEAL.Attic;
    3939
    4040namespace HeuristicLab.Problems.ExternalEvaluation {
    4141
    4242  [Item("EvaluationCache", "Cache for external evaluation values")]
    43   [StorableClass]
     43  [StorableType("FDB10541-FA1C-4CF9-8175-83A55700C052")]
    4444  public class EvaluationCache : ParameterizedNamedItem {
    4545
    4646    #region Types
    4747    private sealed class CacheEntry {
    48 
    4948      public readonly string Key;
    50 
    5149      private QualityMessage message;
    5250      private byte[] rawMessage;
     
    199197    #region Construction & Cloning
    200198    [StorableConstructor]
    201     protected EvaluationCache(bool deserializing) : base(deserializing) { }
     199    protected EvaluationCache(StorableConstructorFlag _) : base(_) { }
    202200    protected EvaluationCache(EvaluationCache original, Cloner cloner)
    203201        : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.