Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/04/09 19:14:48 (15 years ago)
Author:
gkronber
Message:

Fixed a few bugs introduced with r2000. #656 (CEDMA server should handle only one data set (problem) at a time)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/HiveExecuter.cs

    r1922 r2012  
    120120        int i = 0;
    121121        foreach (IAlgorithm a in activeAlgorithms.Values) {
    122           retVal[i++] = "Target-Variable: " + a.TargetVariable + " " + a.Description;
     122          retVal[i++] = a.Name + " " + a.Dataset.GetVariableName(a.TargetVariable);
    123123        }
    124124        return retVal;
Note: See TracChangeset for help on using the changeset viewer.