Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/07/15 14:06:08 (10 years ago)
Author:
mkommend
Message:

#2174: Minor code cleanup in encodings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Encodings/Encoding.cs

    r11619 r11737  
    8080    }
    8181
     82    public void ConfigureOperator(IOperator @operator) { ConfigureOperators(new[] { @operator }); }
    8283    public abstract void ConfigureOperators(IEnumerable<IOperator> operators);
    83     public void ConfigureOperator(IOperator @operator) { ConfigureOperators(new[] { @operator }); }
     84
    8485
    8586    public event EventHandler SolutionCreatorChanged;
     
    8990      if (handler != null) handler(this, EventArgs.Empty);
    9091    }
    91 
    92 
    93     public event EventHandler ParameterConfigurationChanged;
    94     protected virtual void OnParameterConfigurationChanged() {
    95       var handler = ParameterConfigurationChanged;
    96       if (handler != null) handler(this, EventArgs.Empty);
    97     }
    9892  }
    9993}
Note: See TracChangeset for help on using the changeset viewer.