Changeset 12965
- Timestamp:
- 09/22/15 01:26:15 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Tracking/SchemaDiversification/SchemaCleanupOperator.cs
r12958 r12965 40 40 41 41 public override IOperation Apply() { 42 foreach (var s in ExecutionContext.Scope.SubScopes.Where(x => x.Name.Equals("Schema"))) { 43 s.Variables.Clear(); 42 foreach (var scope in ExecutionContext.Scope.SubScopes.Where(x => x.Name.Equals("Schema"))) { 43 foreach (var subscope in scope.SubScopes) { subscope.Variables.Clear(); } 44 scope.SubScopes.Clear(); 45 scope.Variables.Clear(); 44 46 } 45 47 ExecutionContext.Scope.SubScopes.RemoveAll(x => x.Name.Equals("Schema"));
Note: See TracChangeset
for help on using the changeset viewer.