- Timestamp:
- 01/07/15 14:06:08 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Encodings/Encoding.cs
r11619 r11737 80 80 } 81 81 82 public void ConfigureOperator(IOperator @operator) { ConfigureOperators(new[] { @operator }); } 82 83 public abstract void ConfigureOperators(IEnumerable<IOperator> operators); 83 public void ConfigureOperator(IOperator @operator) { ConfigureOperators(new[] { @operator }); } 84 84 85 85 86 public event EventHandler SolutionCreatorChanged; … … 89 90 if (handler != null) handler(this, EventArgs.Empty); 90 91 } 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 }98 92 } 99 93 }
Note: See TracChangeset
for help on using the changeset viewer.