Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/22/18 09:13:14 (6 years ago)
Author:
fholzing
Message:

#2871: Removed new Features (build.cmd failed)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Regression/RegressionSolutionVariableImpactsCalculator.cs

    r15799 r15802  
    142142        if (progressCallback != null) {
    143143          curIdx++;
    144           if (progressCallback((double)curIdx / count, $"Calculating impact for variable {inputVariable} ({curIdx} of {count})")) { return null; }
     144          if (progressCallback((double)curIdx / count, string.Format("Calculating impact for variable {0} ({1} of {2})", inputVariable, curIdx, count))) { return null; }
    145145        }
    146146        var newEstimates = EvaluateModelWithReplacedVariable(solution.Model, inputVariable, modifiableDataset, rows, replacementMethod);
Note: See TracChangeset for help on using the changeset viewer.