Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/11/20 13:36:02 (4 years ago)
Author:
bburlacu
Message:

#1772: Merge trunk changes and fix all errors and compilation warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/Operators/BeforeCrossoverOperator.cs

    r11858 r17434  
    2222using System;
    2323using System.Linq;
     24using HEAL.Attic;
    2425using HeuristicLab.Common;
    2526using HeuristicLab.Core;
     
    2930
    3031namespace HeuristicLab.EvolutionTracking {
    31   [StorableClass]
    3232  [Item("BeforeCrossoverOperator", "A generic operator that can record genealogical relationships between crossover parents and children.")]
     33  [StorableType("A44A9100-AD1D-459C-A45A-CE7C1B894E71")]
    3334  public class BeforeCrossoverOperator<T> : EvolutionTrackingOperator<T>, ICrossoverOperator<T> where T : class,IItem {
    3435    private const string ParentsParameterName = "Parents";
     
    5556
    5657    [StorableConstructor]
    57     protected BeforeCrossoverOperator(bool deserializing) : base(deserializing) { }
     58    protected BeforeCrossoverOperator(StorableConstructorFlag _) : base(_) { }
    5859
    5960    public BeforeCrossoverOperator() {
Note: See TracChangeset for help on using the changeset viewer.