Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/ViewModels/IntVMs.cs

Last change on this file was 17843, checked in by dpiringe, 3 years ago

#3026

  • removed property ConvertableType from all converters
  • removed the option to fixate or loosen the path of JsonItems (obsolete)
  • added a abstract formatter SymbolicRegressionSolutionFormatterBase as base formatter for ISymbolicRegressionSolution
  • unified the construction of exporter controls
  • code cleanup
File size: 633 bytes
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  public class IntArrayValueVM : ArrayValueVM<int, IntArrayJsonItem> {
3    protected override int MinTypeValue => int.MinValue;
4    protected override int MaxTypeValue => int.MaxValue;
5  }
6
7  public class IntRangeVM : RangeVM<int, IntRangeJsonItem> {
8    protected override int MinTypeValue => int.MinValue;
9    protected override int MaxTypeValue => int.MaxValue;
10  }
11
12  public class IntValueVM : SingleValueVM<int, IntJsonItem> {
13    protected override int MinTypeValue => int.MinValue;
14    protected override int MaxTypeValue => int.MaxValue;
15  }
16
17}
Note: See TracBrowser for help on using the repository browser.