Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/14/10 01:06:17 (14 years ago)
Author:
epitzer
Message:

Merge StorableClassType.Empty into StorableClassType.MarkedOnly and make it the default if not specified (#548)

Location:
trunk/sources/HeuristicLab.Optimization/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/Algorithm.cs

    r2995 r3017  
    3232  /// </summary>
    3333  [Item("Algorithm", "A base class for algorithms.")]
    34   [StorableClass(StorableClassType.MarkedOnly)]
     34  [StorableClass]
    3535  public abstract class Algorithm : ParameterizedNamedItem, IAlgorithm {
    3636    public override Image ItemImage {
  • trunk/sources/HeuristicLab.Optimization/3.3/EngineAlgorithm.cs

    r2995 r3017  
    3333  /// </summary>
    3434  [Item("EngineAlgorithm", "A base class for algorithms which use an engine for execution.")]
    35   [StorableClass(StorableClassType.MarkedOnly)]
     35  [StorableClass]
    3636  public abstract class EngineAlgorithm : Algorithm {
    3737    private OperatorGraph operatorGraph;
  • trunk/sources/HeuristicLab.Optimization/3.3/UserDefinedAlgorithm.cs

    r2994 r3017  
    3131  [Item("UserDefinedAlgorithm", "An algorithm which can be defined by the user.")]
    3232  [Creatable("Algorithms")]
    33   [StorableClass(StorableClassType.Empty)]
     33  [StorableClass]
    3434  public sealed class UserDefinedAlgorithm : EngineAlgorithm, IParameterizedItem {
    3535    public new ParameterCollection Parameters {
Note: See TracChangeset for help on using the changeset viewer.