Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/20/10 15:40:58 (14 years ago)
Author:
mkommend
Message:

corrected selection rectangle in RunCollectionBubbleChartView and removed filtering of datatypes in IStringConvertibleMatrix implementation of RunCollection (ticket #970)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/RunCollection.cs

    r3431 r3441  
    9090      if (value == null)
    9191        return false;
    92       if (!parameterNames.Contains(name) &&
    93           viewableDataTypes.Any(x => x.IsAssignableFrom(value.GetType()))) {
     92      if (!parameterNames.Contains(name)) {
     93        // && viewableDataTypes.Any(x => x.IsAssignableFrom(value.GetType()))) {
    9494        parameterNames.Add(name);
    9595        return true;
     
    100100      if (value == null)
    101101        return false;
    102       if (!resultNames.Contains(name) &&
    103           viewableDataTypes.Any(x => x.IsAssignableFrom(value.GetType()))) {
     102      if (!resultNames.Contains(name)) {
     103        // && viewableDataTypes.Any(x => x.IsAssignableFrom(value.GetType()))) {
    104104        resultNames.Add(name);
    105105        return true;
Note: See TracChangeset for help on using the changeset viewer.