Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/07/14 15:00:40 (10 years ago)
Author:
svonolfe
Message:

updated according to trunk changes (#1610)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SimulationCore/HeuristicLab.SimulationCore/3.3/Simulation.cs

    r7204 r10297  
    154154      try {
    155155        foreach (IParameter parameter in Parameters) {
    156           parameter.ExecutionContext = runInfo.ExecutionContext;
     156          if(parameter is ILookupParameter)
     157            (parameter as ILookupParameter).ExecutionContext = runInfo.ExecutionContext;
    157158        }
    158159
     
    165166
    166167        foreach (IParameter parameter in Parameters) {
    167           parameter.ExecutionContext = null;
     168          if (parameter is ILookupParameter)
     169            (parameter as ILookupParameter).ExecutionContext = null;
    168170        }
    169171      }
Note: See TracChangeset for help on using the changeset viewer.