Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/21/18 14:08:26 (6 years ago)
Author:
fholzing
Message:

#2871: Added textual status update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionVariableImpactsView.cs

    r15797 r15799  
    154154      try {
    155155        var impacts = await Task.Run(() => RegressionSolutionVariableImpactsCalculator.CalculateImpacts(Content, dataPartition, replMethod, factorReplMethod,
    156           (i) => {
     156          (i, s) => {
    157157            progress.ProgressValue = i;
     158            progress.Status = s;
    158159            return cancellationToken.Token.IsCancellationRequested;
    159160          }), cancellationToken.Token);
Note: See TracChangeset for help on using the changeset viewer.