Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 18:16:20 (6 years ago)
Author:
gkronber
Message:

#2520: changed HeuristicLab.MetaOptimization addon to compile with new HL.Persistence

Location:
addons/HeuristicLab.MetaOptimization
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • addons/HeuristicLab.MetaOptimization

    • Property svn:ignore
      •  

        old new  
        88HeuristicLab.MetaOptimization.sln.docstates.suo
        99_ReSharper.HeuristicLab.MetaOptimization
         10packages
  • addons/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Operators/Crossovers/IntValue/MultiIntValueCrossover.cs

    r10309 r16574  
    88using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    99using HeuristicLab.PluginInfrastructure;
     10using HEAL.Attic;
    1011
    1112namespace HeuristicLab.Problems.MetaOptimization.Operators.Crossovers {
    1213  [Item("MultiIntValueCrossover", "Randomly selects and applies one of its crossovers every time it is called.")]
    13   [StorableClass]
     14  [StorableType("FEF9B863-E609-4743-B8C6-AA8DE6A65470")]
    1415  public class MultiIntValueCrossover : StochasticMultiBranch<IIntValueCrossover>, IIntValueCrossover, IStochasticOperator {
    1516    public override bool CanChangeName {
     
    2122
    2223    [StorableConstructor]
    23     protected MultiIntValueCrossover(bool deserializing) : base(deserializing) { }
     24    protected MultiIntValueCrossover(StorableConstructorFlag _) : base(_) { }
    2425    public MultiIntValueCrossover() {
    2526      foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(IIntValueCrossover)).OrderBy(op => op.Name)) {
Note: See TracChangeset for help on using the changeset viewer.