Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/26/20 09:39:14 (4 years ago)
Author:
dpiringe
Message:

#3026:

  • added an extra loop to add empty default results in Runner (to prevent not existing results)
  • fixed a bug in JsonItemValidValuesControl, now the dropdown should not reset the default value
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Converters/RegressionProblemDataConverter.cs

    r17540 r17560  
    238238        MaxValue = testPartition.End,
    239239        Minimum = 0,
    240         Maximum = Math.Max(testPartition.End, trainingPartition.End)
     240        Maximum = int.MaxValue //Math.Max(testPartition.End, trainingPartition.End)
    241241      };
    242242    }
     
    251251        MaxValue = trainingPartition.End,
    252252        Minimum = 0,
    253         Maximum = Math.Max(testPartition.End, trainingPartition.End)
     253        Maximum = int.MaxValue //Math.Max(testPartition.End, trainingPartition.End)
    254254      };
    255255    }
Note: See TracChangeset for help on using the changeset viewer.