Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/22/10 04:15:53 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on algorithms
File:
1 edited

Legend:

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

    r2845 r2851  
    4848    }
    4949
    50     protected ParameterizedNamedItem() {
    51       Name = ItemName;
    52       Description = ItemDescription;
     50    protected ParameterizedNamedItem()
     51      : base() {
     52      name = ItemName;
     53      description = ItemDescription;
    5354      Parameters = new ParameterCollection();
    5455      readOnlyParameters = null;
     
    5657    protected ParameterizedNamedItem(string name)
    5758      : base(name) {
    58       Description = ItemDescription;
     59      description = ItemDescription;
    5960      Parameters = new ParameterCollection();
    6061      readOnlyParameters = null;
     
    6263    protected ParameterizedNamedItem(string name, ParameterCollection parameters)
    6364      : base(name) {
    64       Description = ItemDescription;
     65      description = ItemDescription;
    6566      Parameters = parameters;
    6667      readOnlyParameters = null;
Note: See TracChangeset for help on using the changeset viewer.