Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/31/19 14:40:15 (5 years ago)
Author:
abeham
Message:

#1614: updated to new persistence and .NET 4.6.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/CPLEX/CplexSolver.cs

    r15718 r16728  
    2222using System;
    2323using System.Threading;
     24using HEAL.Attic;
    2425using HeuristicLab.Common;
    2526using HeuristicLab.Core;
     
    2728using HeuristicLab.Encodings.IntegerVectorEncoding;
    2829using HeuristicLab.Optimization;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3030using ILOG.CPLEX;
    3131using ILOG.OPL;
     
    3333namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.CPLEX {
    3434  [Item("CPLEX Solver (GQAP)", "Base class")]
    35   [StorableClass]
     35  [StorableType("09AC71C5-20C7-4AC0-9E5A-405BA5075552")]
    3636  public abstract class CplexSolver : ContextAlgorithm<CplexContext, IntegerVectorEncoding> {
    3737    public override bool SupportsPause {
     
    4949
    5050    [StorableConstructor]
    51     protected CplexSolver(bool deserializing) : base(deserializing) { }
     51    protected CplexSolver(StorableConstructorFlag _) : base(_) { }
    5252    protected CplexSolver(CplexSolver original, Cloner cloner)
    5353    : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.