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/Infrastructure/Interfaces.cs

    r15700 r16728  
    2121
    2222using System;
     23using HEAL.Attic;
    2324using HeuristicLab.Core;
    2425
    2526namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms {
     27  [StorableType("2bab7669-028a-4ba8-9c63-60853e15ad47")]
    2628  public interface ISingleObjectiveSolutionScope<TSolution> : IScope {
    2729    TSolution Solution { get; set; }
    2830    double Fitness { get; set; }
    2931  }
    30 
     32  [StorableType("0ae52e60-5ea1-428f-99ca-b7b84a79857d")]
    3133  public interface IContext : IExecutionContext {
    3234    new IExecutionContext Parent { get; set; }
     
    3739    event EventHandler BestQualityChanged;
    3840  }
    39 
     41  [StorableType("ab766d45-2dab-4280-9f4e-1531fe9a91cf")]
    4042  public interface IStochasticContext : IContext {
    4143    IRandom Random { get; set; }
Note: See TracChangeset for help on using the changeset viewer.