Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/04/10 04:52:28 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • implemented reviewers' comments on version r2917.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/EngineAlgorithm.cs

    r2917 r2924  
    9696    protected EngineAlgorithm()
    9797      : base() {
    98       globalScope = new Scope();
     98      globalScope = new Scope("Global Scope");
    9999      globalScope.Variables.Add(new Variable("Results", new VariableCollection()));
    100100      OperatorGraph = new OperatorGraph();
     
    103103    protected EngineAlgorithm(string name)
    104104      : base(name) {
    105       globalScope = new Scope();
     105      globalScope = new Scope("Global Scope");
    106106      globalScope.Variables.Add(new Variable("Results", new VariableCollection()));
    107107      OperatorGraph = new OperatorGraph();
     
    110110    protected EngineAlgorithm(string name, ParameterCollection parameters)
    111111      : base(name, parameters) {
    112       globalScope = new Scope();
     112      globalScope = new Scope("Global Scope");
    113113      globalScope.Variables.Add(new Variable("Results", new VariableCollection()));
    114114      OperatorGraph = new OperatorGraph();
     
    117117    protected EngineAlgorithm(string name, string description)
    118118      : base(name, description) {
    119       globalScope = new Scope();
     119      globalScope = new Scope("Global Scope");
    120120      globalScope.Variables.Add(new Variable("Results", new VariableCollection()));
    121121      OperatorGraph = new OperatorGraph();
     
    124124    protected EngineAlgorithm(string name, string description, ParameterCollection parameters)
    125125      : base(name, description, parameters) {
    126       globalScope = new Scope();
     126      globalScope = new Scope("Global Scope");
    127127      globalScope.Variables.Add(new Variable("Results", new VariableCollection()));
    128128      OperatorGraph = new OperatorGraph();
Note: See TracChangeset for help on using the changeset viewer.