Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/05/10 05:23:56 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on parameters and operators
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Parameters/3.3/Parameter.cs

    r2740 r2756  
    5656      dataType = typeof(IItem);
    5757    }
     58    protected Parameter(string name, Type dataType)
     59      : base(name) {
     60      if (dataType == null) throw new ArgumentNullException();
     61      this.dataType = dataType;
     62    }
    5863    protected Parameter(string name, string description, Type dataType)
    5964      : base(name, description) {
Note: See TracChangeset for help on using the changeset viewer.