Changeset 2924 for trunk/sources/HeuristicLab.Optimization
- Timestamp:
- 03/04/10 04:52:28 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/EngineAlgorithm.cs
r2917 r2924 96 96 protected EngineAlgorithm() 97 97 : base() { 98 globalScope = new Scope( );98 globalScope = new Scope("Global Scope"); 99 99 globalScope.Variables.Add(new Variable("Results", new VariableCollection())); 100 100 OperatorGraph = new OperatorGraph(); … … 103 103 protected EngineAlgorithm(string name) 104 104 : base(name) { 105 globalScope = new Scope( );105 globalScope = new Scope("Global Scope"); 106 106 globalScope.Variables.Add(new Variable("Results", new VariableCollection())); 107 107 OperatorGraph = new OperatorGraph(); … … 110 110 protected EngineAlgorithm(string name, ParameterCollection parameters) 111 111 : base(name, parameters) { 112 globalScope = new Scope( );112 globalScope = new Scope("Global Scope"); 113 113 globalScope.Variables.Add(new Variable("Results", new VariableCollection())); 114 114 OperatorGraph = new OperatorGraph(); … … 117 117 protected EngineAlgorithm(string name, string description) 118 118 : base(name, description) { 119 globalScope = new Scope( );119 globalScope = new Scope("Global Scope"); 120 120 globalScope.Variables.Add(new Variable("Results", new VariableCollection())); 121 121 OperatorGraph = new OperatorGraph(); … … 124 124 protected EngineAlgorithm(string name, string description, ParameterCollection parameters) 125 125 : base(name, description, parameters) { 126 globalScope = new Scope( );126 globalScope = new Scope("Global Scope"); 127 127 globalScope.Variables.Add(new Variable("Results", new VariableCollection())); 128 128 OperatorGraph = new OperatorGraph();
Note: See TracChangeset
for help on using the changeset viewer.