Free cookie consent management tool by TermsFeed Policy Generator

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

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

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPCoordinatesPathEvaluator.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.
     
    2222using HeuristicLab.Core;
    2323using HeuristicLab.Data;
     24using HEAL.Attic;
    2425
    2526namespace HeuristicLab.Problems.TravelingSalesman {
     27  [StorableType("C9962138-AB3D-4C33-B5EC-9B526E0C6F82")]
    2628  /// <summary>
    2729  /// An interface which represents an evaluation operator which evaluates TSP solutions given in path representation using city coordinates.
  • trunk/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPDistanceMatrixEvaluator.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.
     
    2121
    2222using HeuristicLab.Core;
     23using HEAL.Attic;
    2324
    2425namespace HeuristicLab.Problems.TravelingSalesman {
     26  [StorableType("ADEAB327-E563-42D6-845C-E9D412586A4C")]
    2527  /// <summary>
    2628  /// An interface which represents an evaluation operator which evaluates TSP solutions given in path representation using a distance matrix.
  • trunk/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPEvaluator.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.
     
    2121
    2222using HeuristicLab.Optimization;
     23using HEAL.Attic;
    2324
    2425namespace HeuristicLab.Problems.TravelingSalesman {
     26  [StorableType("913DCAEA-8E40-4ADA-AB77-0E99B7C1C340")]
    2527  /// <summary>
    2628  /// An interface which represents an evaluation operator for Traveling Salesman Problems.
  • trunk/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPMoveEvaluator.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.
     
    2222using System;
    2323using HeuristicLab.Optimization;
     24using HEAL.Attic;
    2425
    2526namespace HeuristicLab.Problems.TravelingSalesman {
     27  [StorableType("2EFBA5C1-6503-4910-9EF8-F6A5D8FBAFEF")]
    2628  public interface ITSPMoveEvaluator : ISingleObjectiveMoveEvaluator, IMoveOperator {
    2729    Type EvaluatorType { get; }
  • trunk/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPPathEvaluator.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.
     
    2222using HeuristicLab.Core;
    2323using HeuristicLab.Encodings.PermutationEncoding;
     24using HEAL.Attic;
    2425
    2526namespace HeuristicLab.Problems.TravelingSalesman {
     27  [StorableType("D500AB51-6750-44D3-B1CA-0DF2DCB43758")]
    2628  /// <summary>
    2729  /// An interface which represents an evaluation operator which evaluates TSP solutions given in path representation.
  • trunk/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPPathMoveEvaluator.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.
     
    2323using HeuristicLab.Data;
    2424using HeuristicLab.Encodings.PermutationEncoding;
     25using HEAL.Attic;
    2526
    2627namespace HeuristicLab.Problems.TravelingSalesman {
     28  [StorableType("E8D13595-71B9-4F6F-B879-FDF2BDB482EB")]
    2729  public interface ITSPPathMoveEvaluator : ITSPMoveEvaluator, IPermutationMoveOperator {
    2830    ILookupParameter<DoubleMatrix> CoordinatesParameter { get; }
Note: See TracChangeset for help on using the changeset viewer.