Changeset 5649 for branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/FixedDataAnalysisAlgorithm.cs
- Timestamp:
- 03/10/11 10:00:09 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/FixedDataAnalysisAlgorithm.cs
r5617 r5649 76 76 base.Start(); 77 77 OnStarted(); 78 Run(); 79 OnStopped(); 78 try { 79 Run(); 80 } 81 catch (Exception e) { 82 OnExceptionOccurred(e); 83 } 84 finally { 85 OnStopped(); 86 } 80 87 } 81 88
Note: See TracChangeset
for help on using the changeset viewer.