- Timestamp:
- 12/15/18 12:36:08 (6 years ago)
- Location:
- branches/2892_LR-prediction-intervals
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2892_LR-prediction-intervals
- Property svn:ignore
-
old new 1 *.docstates 2 *.psess 3 *.resharper 4 *.suo 5 *.user 6 *.vsp 7 Doxygen 8 FxCopResults.txt 9 Google.ProtocolBuffers-0.9.1.dll 10 Google.ProtocolBuffers-2.4.1.473.dll 11 HeuristicLab 3.3.5.1.ReSharper.user 12 HeuristicLab 3.3.6.0.ReSharper.user 13 HeuristicLab.4.5.resharper.user 14 HeuristicLab.ExtLibs.6.0.ReSharper.user 15 HeuristicLab.Scripting.Development 16 HeuristicLab.resharper.user 17 ProtoGen.exe 1 18 TestResults 19 _ReSharper.HeuristicLab 20 _ReSharper.HeuristicLab 3.3 21 _ReSharper.HeuristicLab 3.3 Tests 22 _ReSharper.HeuristicLab.ExtLibs 23 bin 24 protoc.exe 25 obj 26 .vs
-
- Property svn:mergeinfo changed
-
Property
svn:global-ignores
set to
*.nuget
packages
- Property svn:ignore
-
branches/2892_LR-prediction-intervals/HeuristicLab.Algorithms.NSGA2
- Property svn:mergeinfo changed
/branches/2915-AbsoluteSymbol/HeuristicLab.Algorithms.NSGA2 (added) merged: 16240 /trunk/HeuristicLab.Algorithms.NSGA2 (added) merged: 15983,16356
- Property svn:mergeinfo changed
-
branches/2892_LR-prediction-intervals/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2.cs
r15583 r16388 166 166 : base(original, cloner) { 167 167 paretoFrontAnalyzer = (RankBasedParetoFrontAnalyzer)cloner.Clone(original.paretoFrontAnalyzer); 168 AfterDeserialization();168 RegisterEventhandlers(); 169 169 } 170 170 public NSGA2() { … … 240 240 UpdateAnalyzers(); 241 241 242 AfterDeserialization();242 RegisterEventhandlers(); 243 243 } 244 244 … … 338 338 #endregion 339 339 340 RegisterEventhandlers(); 341 } 342 343 private void RegisterEventhandlers() { 340 344 PopulationSizeParameter.ValueChanged += new EventHandler(PopulationSizeParameter_ValueChanged); 341 345 PopulationSize.ValueChanged += new EventHandler(PopulationSize_ValueChanged); … … 346 350 } 347 351 } 352 348 353 private void ParameterizeSolutionsCreator() { 349 354 SolutionsCreator.EvaluatorParameter.ActualName = Problem.EvaluatorParameter.Name;
Note: See TracChangeset
for help on using the changeset viewer.