Free cookie consent management tool by TermsFeed Policy Generator

Changeset 82 for trunk


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
Location:
trunk/sources
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/HeuristicLab.Data.csproj

    r41 r82  
    112112      <DependentUpon>ConstrainedDoubleDataView.cs</DependentUpon>
    113113    </Compile>
     114    <Compile Include="NullData.cs" />
    114115    <Compile Include="IntMatrixDataView.cs">
    115116      <SubType>UserControl</SubType>
  • 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.