Changeset 10297 for branches/SimulationCore
- Timestamp:
- 01/07/14 15:00:40 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SimulationCore/HeuristicLab.SimulationCore/3.3/Simulation.cs
r7204 r10297 154 154 try { 155 155 foreach (IParameter parameter in Parameters) { 156 parameter.ExecutionContext = runInfo.ExecutionContext; 156 if(parameter is ILookupParameter) 157 (parameter as ILookupParameter).ExecutionContext = runInfo.ExecutionContext; 157 158 } 158 159 … … 165 166 166 167 foreach (IParameter parameter in Parameters) { 167 parameter.ExecutionContext = null; 168 if (parameter is ILookupParameter) 169 (parameter as ILookupParameter).ExecutionContext = null; 168 170 } 169 171 }
Note: See TracChangeset
for help on using the changeset viewer.