Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/10 01:03:30 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on ItemAttribute and named items
  • corrected version information in Optimizer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/Scope.cs

    r2830 r2931  
    8282      SubScopes = new ScopeList();
    8383    }
     84    public Scope(string name, string description)
     85      : base(name, description) {
     86      parent = null;
     87      Variables = new VariableCollection();
     88      SubScopes = new ScopeList();
     89    }
    8490
    8591    /// <inheritdoc/>
Note: See TracChangeset for help on using the changeset viewer.