Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 19:06:54 (7 years ago)
Author:
gkronber
Message:

#2520 fixed unit tests for new persistence: loading & storing all samples

Location:
branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/Interfaces/IQAPEvaluator.cs

    r14185 r14929  
    2424using HeuristicLab.Encodings.PermutationEncoding;
    2525using HeuristicLab.Optimization;
     26using HeuristicLab.Persistence;
    2627
    2728namespace HeuristicLab.Problems.QuadraticAssignment {
     29  [StorableType("f029ef3d-1a2c-4ad5-8080-27a057f594b2")]
    2830  public interface IQAPEvaluator : ISingleObjectiveEvaluator {
    2931    ILookupParameter<Permutation> PermutationParameter { get; }
  • branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/Interfaces/IQAPMoveEvaluator.cs

    r14185 r14929  
    2424using HeuristicLab.Encodings.PermutationEncoding;
    2525using HeuristicLab.Optimization;
     26using HeuristicLab.Persistence;
    2627
    2728namespace HeuristicLab.Problems.QuadraticAssignment {
     29  [StorableType("b88a8b14-b980-4970-be0e-f393c921ddf4")]
    2830  public interface IQAPMoveEvaluator : ISingleObjectiveMoveEvaluator, IMoveOperator {
    2931    ILookupParameter<Permutation> PermutationParameter { get; }
  • branches/PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/QAPSimilarityCalculator.cs

    r14185 r14929  
    2525using HeuristicLab.Encodings.PermutationEncoding;
    2626using HeuristicLab.Optimization.Operators;
     27using HeuristicLab.Persistence;
    2728
    2829namespace HeuristicLab.Problems.QuadraticAssignment {
     
    3435  /// </remarks>
    3536  [Item("QAPSimilarityCalculator", "An operator that performs similarity calculation between two quadratic assignment solutions. The operator calculates the similarity based on the number of edges the two solutions have in common.")]
     37  [StorableType("16ad1a1f-cbb3-4f12-9d4b-4bfdadee5a8d")]
    3638  public sealed class QAPSimilarityCalculator : SingleObjectiveSolutionSimilarityCalculator {
    3739    protected override bool IsCommutative { get { return true; } }
Note: See TracChangeset for help on using the changeset viewer.