Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/17/10 05:24:03 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • corrected several bugs in order to get SGA working
File:
1 edited

Legend:

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

    r2796 r2818  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Text;
    25 using System.Xml;
    2623using HeuristicLab.Common;
    2724using HeuristicLab.Core;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2925
    3026namespace HeuristicLab.Parameters {
     
    3935
    4036    protected override IItem GetActualValue() {
    41       string name = LookupParameter<T>.TranslateName(Name, ExecutionContext);
     37      string name = LookupParameter<ItemArray<T>>.TranslateName(Name, ExecutionContext);
    4238      IScope scope = ExecutionContext.Scope;
    4339      ItemArray<T> values = new ItemArray<T>(scope.SubScopes.Count);
     
    6864        );
    6965
    70       string name = LookupParameter<T>.TranslateName(Name, ExecutionContext);
     66      string name = LookupParameter<ItemArray<T>>.TranslateName(Name, ExecutionContext);
    7167      IScope scope = ExecutionContext.Scope;
    7268      IVariable var;
Note: See TracChangeset for help on using the changeset viewer.