- Timestamp:
- 02/06/15 17:52:14 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization
- Property svn:mergeinfo changed
/branches/ProgrammableProblem/HeuristicLab.Optimization (added) merged: 11573-11574,11595,11645,11753,11812-11813,11892,11946,11949,11952
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Optimization/3.3/Algorithms/EngineAlgorithm.cs
r11171 r11961 159 159 if ((engine != null) && (operatorGraph.InitialOperator != null)) { 160 160 ExecutionContext context = null; 161 if (Problem != null) context = new ExecutionContext(context, Problem, globalScope); 161 if (Problem != null) { 162 foreach (var item in Problem.ExecutionContextItems) 163 context = new ExecutionContext(context, item, globalScope); 164 } 162 165 context = new ExecutionContext(context, this, globalScope); 163 166 context = new ExecutionContext(context, operatorGraph.InitialOperator, globalScope);
Note: See TracChangeset
for help on using the changeset viewer.