Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/08 17:18:44 (16 years ago)
Author:
swagner
Message:

Fixed ticket #70

  • added new data element NullData for representing a null value
  • used NullData as value for the marker variable in CombinedOperator
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/CombinedOperator.cs

    r76 r82  
    6969      if (scope.GetVariable(Guid.ToString()) == null) { // contained operator not yet executed
    7070        // add marker
    71         scope.AddVariable(new Variable(Guid.ToString(), null));
     71        scope.AddVariable(new Variable(Guid.ToString(), new NullData()));
    7272
    7373        // add aliases
Note: See TracChangeset for help on using the changeset viewer.