Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/21 09:48:16 (3 years ago)
Author:
jzenisek
Message:

#2719 merged head of HeuristicLab.Problems.DataAnalysis into branch; added several minor items

Location:
branches/2719_HeuristicLab.DatastreamAnalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2719_HeuristicLab.DatastreamAnalysis

  • branches/2719_HeuristicLab.DatastreamAnalysis/HeuristicLab.DatastreamAnalysis/3.4/ProxyEnsembleModel.cs

    r15867 r17980  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    1818 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
    1919 */
    20 #endregion
     20 #endregion
    2121
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    26 using HeuristicLab.Collections;
    2724using HeuristicLab.Common;
    2825using HeuristicLab.Core;
    2926using HeuristicLab.Data;
    3027using HeuristicLab.Parameters;
    31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3228using HeuristicLab.Problems.DataAnalysis;
     29using HEAL.Attic;
     30
    3331namespace HeuristicLab.DatastreamAnalysis {
    34   [StorableClass]
    35   [Item("Proxy Ensemble Model", "Represents a named and rated collection of models which acts as a model yet again.")]
     32  [Item("Proxy Ensemble Model", "Represents a named and rated collection of models which acts as a model yet again.")] 
    3633  [Creatable(CreatableAttribute.Categories.DataAnalysis)]
     34  [StorableType("F3794605-3D02-4482-8919-2FC29EBDB6F4")]
    3735  public class ProxyEnsembleModel : ParameterizedNamedItem, IProxyEnsembleModel {
    3836    protected const string ModelParameterName = "Model";
     
    7674    #region constructors, clone ...
    7775    [StorableConstructor]
    78     protected ProxyEnsembleModel(bool deserializing) : base(deserializing) { }
     76    protected ProxyEnsembleModel(StorableConstructorFlag _) : base(_) { }
    7977    protected ProxyEnsembleModel(ProxyEnsembleModel original, Cloner cloner) : base(original, cloner) {
    8078      RegisterParameterEvents();
Note: See TracChangeset for help on using the changeset viewer.