Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/18/10 02:17:56 (15 years ago)
Author:
swagner
Message:

Finished best and best known quality handling (#920)

Location:
trunk/sources/HeuristicLab.Operators/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/3.3/ResultsCollector.cs

    r3017 r3095  
    4949          var.Value = (IItem)param.ActualValue;
    5050        else
    51           results.Add(new Variable(param.Name, param.ActualValue));
     51          results.Add(new Variable(param.Name, param.Description, param.ActualValue));
    5252      }
    5353      return base.Apply();
  • trunk/sources/HeuristicLab.Operators/3.3/VariableCreator.cs

    r3017 r3095  
    5151          var.Value = (IItem)param.ActualValue.Clone();
    5252        else
    53           CurrentScope.Variables.Add(new Variable(param.Name, (IItem)param.ActualValue.Clone()));
     53          CurrentScope.Variables.Add(new Variable(param.Name, param.Description, (IItem)param.ActualValue.Clone()));
    5454      }
    5555      return base.Apply();
Note: See TracChangeset for help on using the changeset viewer.