Free cookie consent management tool by TermsFeed Policy Generator

Changeset 723


Ignore:
Timestamp:
11/08/08 13:57:41 (15 years ago)
Author:
gkronber
Message:

fixed #344 (DataCollector doesn't support collection of values into an ItemList stored in a higher scope)

File:
1 edited

Legend:

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

    r77 r723  
    4343    public override IOperation Apply(IScope scope) {
    4444      ItemList<StringData> names = GetVariableValue<ItemList<StringData>>("VariableNames", scope, false);
    45       ItemList values = GetVariableValue<ItemList>("Values", scope, false, false);
     45      ItemList values = GetVariableValue<ItemList>("Values", scope, true, false);
    4646      if (values == null) {
    4747        values = new ItemList();
Note: See TracChangeset for help on using the changeset viewer.