Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/10/11 13:14:33 (13 years ago)
Author:
gkronber
Message:

changed project files and solution file to make the branch compatible with current trunk version. #1142

Location:
branches/DataAnalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis

    • Property svn:ignore set to
      *.suo
  • branches/DataAnalysis/HeuristicLab.Problems.DataAnalysis/3.3/Operators/CovariantParsimonyPressure.cs

    r4350 r5265  
    2222using System;
    2323using System.Linq;
    24 using alglib;
    2524using HeuristicLab.Core;
    2625using HeuristicLab.Data;
     
    200199                               select normFit).ToArray<double>();
    201200
    202         LengthCorrelationParameter.ActualValue = new DoubleValue(alglib.correlation.spearmanrankcorrelation(lengthArr, adjFitess, lengthArr.Length));
    203         FitnessCorrelationParameter.ActualValue = new DoubleValue(alglib.correlation.spearmanrankcorrelation(fitnessArr, adjFitess, lengthArr.Length));
     201        LengthCorrelationParameter.ActualValue = new DoubleValue(alglib.spearmancorr2(lengthArr, adjFitess, lengthArr.Length));
     202        FitnessCorrelationParameter.ActualValue = new DoubleValue(alglib.spearmancorr2(fitnessArr, adjFitess, lengthArr.Length));
    204203
    205204      } else {
     
    215214                           select f.Value).ToArray<double>();
    216215
    217         LengthCorrelationParameter.ActualValue = new DoubleValue(alglib.correlation.spearmanrankcorrelation(lengths, fitess, lengths.Length));
     216        LengthCorrelationParameter.ActualValue = new DoubleValue(alglib.spearmancorr2(lengths, fitess, lengths.Length));
    218217      }
    219218      return base.Apply();
Note: See TracChangeset for help on using the changeset viewer.