Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/19/16 12:40:40 (8 years ago)
Author:
abeham
Message:

#2457: worked on recommendation algorithms

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/Docking/AlgorithmControlForm.cs

    r13722 r13774  
    119119
    120120    #region Algorithm Events
    121     private void AlgorithmOnExecutionStateChanged(object sender, EventArgs eventArgs) {
     121    private void AlgorithmOnExecutionStateChanged(object sender, EventArgs e) {
     122      if (InvokeRequired) { Invoke((Action<object, EventArgs>)AlgorithmOnExecutionStateChanged, sender, e); return; }
    122123      if (ShowOnlyFinalResult && (Algorithm.ExecutionState == ExecutionState.Stopped
    123124        || Algorithm.ExecutionState == ExecutionState.Paused))
Note: See TracChangeset for help on using the changeset viewer.